Cleaned up a little bit the code,to include stl only when is needed.

Reduced compilation time because of this.
Moved SOIL to src, api not exposed anymore.
Renamed the demos and examples namespaces.
This commit is contained in:
spartanj@gmail.com
2012-11-27 01:16:26 -03:00
parent 723553a1be
commit 93ae458174
54 changed files with 146 additions and 93 deletions

View File

@@ -1,6 +1,6 @@
#include "eetest.hpp"
namespace EE { namespace Demo {
namespace Demo_Test {
void cEETest::Init() {
EE = cEngine::instance();
@@ -1916,10 +1916,10 @@ void cEETest::End() {
cEngine::DestroySingleton();
}
}}
}
EE_MAIN_FUNC int main (int argc, char * argv []) {
EE::Demo::cEETest * Test = eeNew( EE::Demo::cEETest, () );
Demo_Test::cEETest * Test = eeNew( Demo_Test::cEETest, () );
Test->Process();