Revision: | 446 |
Committed: | Mon Jul 20 02:06:23 2009 UTC (16 years, 2 months ago) by gumby |
Content type: | text/x-chdr |
File size: | 373 byte(s) |
Log Message: |
# | Content |
---|---|
1 | #pragma once |
2 | #ifndef DAODAN_PERSISTENCE_H |
3 | #define DAODAN_PERSISTENCE_H |
4 | |
5 | #include <stdint.h> |
6 | |
7 | #include "Daodan.h" |
8 | |
9 | typedef struct { |
10 | char B; |
11 | char G; |
12 | char R; |
13 | char A; |
14 | } RGBA; |
15 | |
16 | void DDrConsole_Print(const char* text); |
17 | void DDrConsole_PrintColored(const char* text, int priority, RGBA color, RGBA shade); |
18 | void DDrConsole_PrintF(const char* fmt, ...); |
19 | |
20 | #endif |