This commit is contained in:
UnknownShadow200 2022-06-17 11:57:51 +10:00
parent bc91ddaae4
commit af8106c97a

View File

@ -8,7 +8,7 @@
enum FONT_FLAGS { FONT_FLAGS_NONE = 0x00, FONT_FLAGS_BOLD = 0x01, FONT_FLAGS_UNDERLINE = 0x02, FONT_FLAGS_PADDING = 0x04 }; enum FONT_FLAGS { FONT_FLAGS_NONE = 0x00, FONT_FLAGS_BOLD = 0x01, FONT_FLAGS_UNDERLINE = 0x02, FONT_FLAGS_PADDING = 0x04 };
struct FontDesc { void* handle; cc_uint16 size, flags; int height; }; struct FontDesc { void* handle; cc_uint16 size, flags; int height; };
struct DrawTextArgs { cc_string textm; struct FontDesc* font; cc_bool useShadow; }; struct DrawTextArgs { cc_string text; struct FontDesc* font; cc_bool useShadow; };
struct Texture; struct Texture;
struct IGameComponent; struct IGameComponent;
struct StringsBuffer; struct StringsBuffer;