#pragma once #ifndef DAODAN_PERSISTENCE_H #define DAODAN_PERSISTENCE_H #include #include "Daodan.h" typedef struct { char B; char G; char R; char A; } RGBA; void DDrConsole_Print(const char* text); void DDrConsole_PrintColored(const char* text, int priority, RGBA color, RGBA shade); void DDrConsole_PrintF(const char* fmt, ...); #endif