Added premake4.lua file, to create projects more easily, still WIP.

Cleaned up a little bit the MemoryManager, i'm looking how to make it work when
eepp is compiled as a shared library.
This commit is contained in:
spartanj@gmail.com
2012-12-02 03:05:55 -03:00
parent ce2f9f008c
commit 4ea3cdb9ef
5 changed files with 351 additions and 41 deletions

View File

@@ -346,15 +346,9 @@ class EE_API cWindow {
cTimeElapsed * FrameElapsed;
eeFloat ElapsedTime;
cFrameData() :
FrameElapsed(NULL),
ElapsedTime(0)
{}
cFrameData();
~cFrameData()
{
eeSAFE_DELETE( FrameElapsed );
}
~cFrameData();
};
cFrameData mFrameData;