HatchitGame
ht_application.h
1 
15 #pragma once
16 
17 #include <ht_platform.h>
18 #include <ht_inisettings.h>
19 
20 namespace Hatchit {
21 
22  namespace Game {
23 
24  class HT_API Application
25  {
26  public:
27  Application(Core::INISettings* settings);
28 
29  int Run();
30 
31  private:
32  bool Initialize();
33 
34  void DeInitialize();
35  private:
36  Core::INISettings* m_settings;
37  };
38 
39 
40  }
41 
42 }
Hatchit Engine Copyright(c) 2015-2016 Third-Degree.
Definition: ht_glfwkeyboard.h:21
Definition: ht_application.h:24