mirror of
https://github.com/blendogames/thirtyflightsofloving.git
synced 2024-11-14 16:40:57 +00:00
33 lines
506 B
C
33 lines
506 B
C
|
|
enum {
|
|
TEXT_LEFT,
|
|
TEXT_CENTER,
|
|
TEXT_RIGHT
|
|
};
|
|
|
|
typedef struct texthnd_s {
|
|
struct text_s *lines;
|
|
int nlines;
|
|
int curline;
|
|
int size;
|
|
int flags;
|
|
int allocated;
|
|
int page_length;
|
|
int page_width;
|
|
float last_update;
|
|
char background_image[32];
|
|
int start_char;
|
|
byte *buffer;
|
|
} texthnd_t;
|
|
|
|
typedef struct text_s {
|
|
char *text;
|
|
} text_t;
|
|
|
|
void Text_Open(edict_t *ent);
|
|
void Text_Close(edict_t *ent);
|
|
void Text_Update(edict_t *ent);
|
|
void Text_Next(edict_t *ent);
|
|
void Text_Prev(edict_t *ent);
|
|
|
|
|