diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2007-01-29 23:07:47 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2007-01-29 23:07:47 +0000 |
commit | a4e31503633c3029cb6c526275bc34d471a3c0d4 (patch) | |
tree | bab69782d480aaefb527bc07ad2f9730353a0279 /src/being.cpp | |
parent | 457ce3e7b4a869f92d8aef31bdee1b6793587a93 (diff) | |
download | mana-a4e31503633c3029cb6c526275bc34d471a3c0d4.tar.gz mana-a4e31503633c3029cb6c526275bc34d471a3c0d4.tar.bz2 mana-a4e31503633c3029cb6c526275bc34d471a3c0d4.tar.xz mana-a4e31503633c3029cb6c526275bc34d471a3c0d4.zip |
Some trivial documentation work. Fixes all Doxygen warnings.
Diffstat (limited to 'src/being.cpp')
-rw-r--r-- | src/being.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/being.cpp b/src/being.cpp index ac003d1c..68b85832 100644 --- a/src/being.cpp +++ b/src/being.cpp @@ -42,8 +42,8 @@ extern Spriteset *emotionset; -PATH_NODE::PATH_NODE(Uint16 iX, Uint16 iY): - x(iX), y(iY) +PATH_NODE::PATH_NODE(unsigned short x, unsigned short y): + x(x), y(y) { } @@ -486,7 +486,7 @@ Being::draw(Graphics *graphics, int offsetX, int offsetY) const } void -Being::drawEmotion(Graphics *graphics, Sint32 offsetX, Sint32 offsetY) +Being::drawEmotion(Graphics *graphics, int offsetX, int offsetY) { if (!mEmotion) return; @@ -498,7 +498,7 @@ Being::drawEmotion(Graphics *graphics, Sint32 offsetX, Sint32 offsetY) } void -Being::drawSpeech(Graphics *graphics, Sint32 offsetX, Sint32 offsetY) +Being::drawSpeech(Graphics *graphics, int offsetX, int offsetY) { int px = mPx + offsetX; int py = mPy + offsetY; |