]> Shamusworld >> Repos - apple2/blob - src/gui/config.h
Added missing files from last commit. :-/
[apple2] / src / gui / config.h
1 #ifndef __CONFIG_H__
2 #define __CONFIG_H__
3
4 #include <stdint.h>
5 #include <SDL2/SDL.h>
6
7 class Config
8 {
9         public:
10                 Config() {}
11                 ~Config() {}
12
13                 // Everything is class methods/variables
14                 static void Init(SDL_Renderer *);
15                 static void ShowWindow(void);
16                 static void HideWindow(void);
17                 static void MouseDown(int32_t, int32_t, uint32_t);
18                 static void MouseUp(int32_t, int32_t, uint32_t);
19                 static void MouseMove(int32_t, int32_t, uint32_t);
20                 static bool KeyDown(uint32_t);
21                 static void DrawElements(SDL_Renderer *);
22                 static void Render(SDL_Renderer *);
23
24         public:
25                 static bool showWindow;
26 };
27
28 #endif  // __CONFIG_H__
29