diff options
author | chai <chaifix@163.com> | 2018-08-02 20:31:08 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2018-08-02 20:31:08 +0800 |
commit | 59149e80f72bb56ea44fee9482ea92a640cc5c32 (patch) | |
tree | 3497a70beea38a569d03d52720380dc08a3de4a3 /test/01HelloWorld/main.cpp | |
parent | e867de371ed9d38a3e4f51927c8a25a5e8261020 (diff) |
+add box2d
Diffstat (limited to 'test/01HelloWorld/main.cpp')
-rw-r--r-- | test/01HelloWorld/main.cpp | 4 |
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(); |