aboutsummaryrefslogtreecommitdiff
path: root/test/01HelloWorld/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/01HelloWorld/main.cpp')
-rw-r--r--test/01HelloWorld/main.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/01HelloWorld/main.cpp b/test/01HelloWorld/main.cpp
index 62c059f..098ab96 100644
--- a/test/01HelloWorld/main.cpp
+++ b/test/01HelloWorld/main.cpp
@@ -4,6 +4,7 @@
using namespace jin::core;
using namespace jin::graphics;
using namespace jin::input;
+using namespace jin::thread;
void onEvent(jin::input::Event* e)
{
@@ -42,8 +43,9 @@ int main(int argc, char* argv[])
wndSetting.resizable = true;
wnd->init(&wndSetting);
- game->run();
+ //Thread* thread = new Thread();
+ game->run();
game->quit();
wnd->quit();