source:
Daodan/src/Daodan_Console.h@
454
Last change on this file since 454 was 446, checked in by , 15 years ago | |
---|---|
File size: 373 bytes |
Rev | Line | |
---|---|---|
[437] | 1 | #pragma once |
2 | #ifndef DAODAN_PERSISTENCE_H | |
3 | #define DAODAN_PERSISTENCE_H | |
4 | ||
5 | #include <stdint.h> | |
6 | ||
7 | #include "Daodan.h" | |
8 | ||
[446] | 9 | typedef struct { |
10 | char B; | |
11 | char G; | |
12 | char R; | |
13 | char A; | |
14 | } RGBA; | |
15 | ||
[437] | 16 | void DDrConsole_Print(const char* text); |
[446] | 17 | void DDrConsole_PrintColored(const char* text, int priority, RGBA color, RGBA shade); |
[437] | 18 | void DDrConsole_PrintF(const char* fmt, ...); |
19 | ||
20 | #endif |
Note:
See TracBrowser
for help on using the repository browser.