aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/irrlicht-1.8/include/position2d.h
diff options
context:
space:
mode:
authorDavid Walter Seikel2013-01-13 18:54:10 +1000
committerDavid Walter Seikel2013-01-13 18:54:10 +1000
commit959831f4ef5a3e797f576c3de08cd65032c997ad (patch)
treee7351908be5995f0b325b2ebeaa02d5a34b82583 /libraries/irrlicht-1.8/include/position2d.h
parentAdd info about changes to Irrlicht. (diff)
downloadSledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.zip
SledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.tar.gz
SledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.tar.bz2
SledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.tar.xz
Remove damned ancient DOS line endings from Irrlicht. Hopefully I did not go overboard.
Diffstat (limited to '')
-rw-r--r--libraries/irrlicht-1.8/include/position2d.h64
1 files changed, 32 insertions, 32 deletions
diff --git a/libraries/irrlicht-1.8/include/position2d.h b/libraries/irrlicht-1.8/include/position2d.h
index 63275d2..05a27c6 100644
--- a/libraries/irrlicht-1.8/include/position2d.h
+++ b/libraries/irrlicht-1.8/include/position2d.h
@@ -1,32 +1,32 @@
1// Copyright (C) 2002-2012 Nikolaus Gebhardt 1// Copyright (C) 2002-2012 Nikolaus Gebhardt
2// This file is part of the "Irrlicht Engine". 2// This file is part of the "Irrlicht Engine".
3// For conditions of distribution and use, see copyright notice in irrlicht.h 3// For conditions of distribution and use, see copyright notice in irrlicht.h
4 4
5//! As of Irrlicht 1.6, position2d is a synonym for vector2d. 5//! As of Irrlicht 1.6, position2d is a synonym for vector2d.
6/** You should consider position2d to be deprecated, and use vector2d by preference. */ 6/** You should consider position2d to be deprecated, and use vector2d by preference. */
7 7
8#ifndef __IRR_POSITION_H_INCLUDED__ 8#ifndef __IRR_POSITION_H_INCLUDED__
9#define __IRR_POSITION_H_INCLUDED__ 9#define __IRR_POSITION_H_INCLUDED__
10 10
11#include "vector2d.h" 11#include "vector2d.h"
12 12
13namespace irr 13namespace irr
14{ 14{
15namespace core 15namespace core
16{ 16{
17 17
18// Use typedefs where possible as they are more explicit... 18// Use typedefs where possible as they are more explicit...
19 19
20//! \deprecated position2d is now a synonym for vector2d, but vector2d should be used directly. 20//! \deprecated position2d is now a synonym for vector2d, but vector2d should be used directly.
21typedef vector2d<f32> position2df; 21typedef vector2d<f32> position2df;
22 22
23//! \deprecated position2d is now a synonym for vector2d, but vector2d should be used directly. 23//! \deprecated position2d is now a synonym for vector2d, but vector2d should be used directly.
24typedef vector2d<s32> position2di; 24typedef vector2d<s32> position2di;
25} // namespace core 25} // namespace core
26} // namespace irr 26} // namespace irr
27 27
28// ...and use a #define to catch the rest, for (e.g.) position2d<f64> 28// ...and use a #define to catch the rest, for (e.g.) position2d<f64>
29#define position2d vector2d 29#define position2d vector2d
30 30
31#endif // __IRR_POSITION_H_INCLUDED__ 31#endif // __IRR_POSITION_H_INCLUDED__
32 32