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
No known key found for this signature in database
GPG Key ID: 0FF11B67A5C0863C
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;

View File

@ -73,6 +73,9 @@
#include "loadsave.h"
#include "SFont.h"
/**
* Element of the font linked list
*/
typedef struct T_Font
{
char * Name;
@ -84,7 +87,10 @@ typedef struct T_Font
struct T_Font * Next;
struct T_Font * Previous;
} T_Font;
// Liste chainée des polices de texte
/**
* Head of the font linked list
*/
T_Font * font_list_start;
int Nb_fonts;