aboutsummaryrefslogtreecommitdiff
path: root/src/core/game.h
blob: 939d945c86d76aad077b525a4d7e3971126bc23b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef __JIN_CORE_GAME_H
#define __JIN_CORE_GAME_H

namespace jin
{
namespace core
{
    class Game
    {
    public:
    
        void quit(); 
    
        bool running(); 
        
        static Game* get(); 
    
    private:
    
        Game();
        
        static Game* g_game; 
        
        bool run;
    };
}
}

#endif