diff options
author | chai <chaifix@163.com> | 2018-07-28 10:52:03 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2018-07-28 10:52:03 +0800 |
commit | 7b7a510321112978090575e89c3dabeba9ea9f97 (patch) | |
tree | c7d52a34b6c32245457823336394d98e20bdeab6 /src/libjin/Core/Game.cpp | |
parent | c74d103ef624c818bfc4062eedaa0492a290cdc4 (diff) |
*update
Diffstat (limited to 'src/libjin/Core/Game.cpp')
-rw-r--r-- | src/libjin/Core/Game.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/libjin/Core/Game.cpp b/src/libjin/Core/Game.cpp index 5c2e69b..2090d64 100644 --- a/src/libjin/Core/Game.cpp +++ b/src/libjin/Core/Game.cpp @@ -5,7 +5,12 @@ namespace jin namespace core { - Game::Game() :run(true) {}; + Game::Game() :_run(true) {}; + + void Game::run() + { + + } } } |