source: Daodan/src/Daodan_Console.h@ 447

Last change on this file since 447 was 446, checked in by gumby, 15 years ago
File size: 373 bytes
RevLine 
[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]9typedef struct {
10char B;
11char G;
12char R;
13char A;
14} RGBA;
15
[437]16void DDrConsole_Print(const char* text);
[446]17void DDrConsole_PrintColored(const char* text, int priority, RGBA color, RGBA shade);
[437]18void DDrConsole_PrintF(const char* fmt, ...);
19
20#endif
Note: See TracBrowser for help on using the repository browser.