diff options
Diffstat (limited to 'timing/timing.h')
-rw-r--r-- | timing/timing.h | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/timing/timing.h b/timing/timing.h index f420582..f036abc 100644 --- a/timing/timing.h +++ b/timing/timing.h @@ -1,24 +1,24 @@ -#ifndef TIMING_H -#define TIMING_H - -#define SDL_MAIN_HANDLED -#include <SDL2/SDL.h> - -class timing_sdl { - public: - timing_sdl(double fps); - void process(); - bool check_process(); - bool check_render(); - - private: - double frame_time; - double last_time; - double frame_counter; - double tot_time; - double unprocessed_time; - int frames; - bool render; -}; - +#ifndef TIMING_H
+#define TIMING_H
+
+#define SDL_MAIN_HANDLED
+#include <SDL2/SDL.h>
+
+class timing_sdl {
+ public:
+ timing_sdl(double fps);
+ void process();
+ bool check_process();
+ bool check_render();
+
+ private:
+ double frame_time;
+ double last_time;
+ double frame_counter;
+ double tot_time;
+ double unprocessed_time;
+ int frames;
+ bool render;
+};
+
#endif
\ No newline at end of file |