(svn r14461) -Document: add some doxygen comments (Albert)

This commit is contained in:
rubidium
2008-10-13 03:26:48 +00:00
parent 313f193b55
commit f1f5b248c2
8 changed files with 60 additions and 12 deletions

View File

@@ -12,9 +12,10 @@
typedef uint32 SpriteID; ///< The number of a sprite, without mapping bits and colortables
/** Combination of a palette sprite and a 'real' sprite */
struct PalSpriteID {
SpriteID sprite;
SpriteID pal;
SpriteID sprite; ///< The 'real' sprite
SpriteID pal; ///< The palette (use \c PAL_NONE) if not needed)
};
typedef int32 CursorID;