doxygen for T_Font, T_Tile

This commit is contained in:
Thomas Bernard
2019-12-23 22:14:53 +01:00
parent a13d760b2a
commit 67ccb5b0e7
2 changed files with 12 additions and 3 deletions

View File

@@ -542,10 +542,13 @@ typedef struct {
} T_Paintbrush;
/**
* Element of a circular linked list in the tile map
*/
typedef struct
{
int Previous;
int Next;
int Previous; ///< Previous similar tile in the linked list
int Next; ///< Next similar tile in the linked list
byte Flipped; ///< 0:no, 1:horizontally, 2:vertically, 3:both
} T_Tile;