* basic core design (Platform, Engine, Graphics classes)

* logger
* x11 platform implementation
This commit is contained in:
Eduardo Bart
2010-11-18 20:13:35 -02:00
parent ca2e22ec41
commit f58ce52be8
16 changed files with 1359 additions and 8 deletions

10
src/util.h Normal file
View File

@@ -0,0 +1,10 @@
#ifndef UTIL_H
#define UTIL_H
#include <string>
#include <cstdarg>
std::string vformat(const char *format, va_list args);
std::string format(const char *format, ...);
#endif