doxygen for T_Font, T_Tile
This commit is contained in:
parent
a13d760b2a
commit
67ccb5b0e7
@ -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;
|
||||
|
||||
|
||||
@ -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;
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user