replace YAML with custom made library for reading text files named FML

This commit is contained in:
Eduardo Bart
2011-05-21 15:15:46 -03:00
parent 0cd4bcd926
commit 80e42b0f96
29 changed files with 826 additions and 412 deletions

View File

@@ -50,6 +50,9 @@ struct Win32PlatformPrivate {
void Platform::init(const char *appName)
{
// seend random numbers
std::srand(std::time(NULL));
win32.appName = appName;
win32.instance = GetModuleHandle(NULL);

View File

@@ -69,6 +69,9 @@ struct X11PlatformPrivate {
void Platform::init(const char *appName)
{
// seend random numbers
std::srand(std::time(NULL));
x11.appName = appName;
x11.display = NULL;
x11.visual = NULL;