aboutsummaryrefslogtreecommitdiff
path: root/src/hud/hudcontext.hpp
diff options
context:
space:
mode:
authorLoic Guegan <manzerbredes@mailbox.org>2020-07-07 06:40:50 +0200
committerLoic Guegan <manzerbredes@mailbox.org>2020-07-07 06:40:50 +0200
commitaac94e911b0bab8db5cdb5efb8d4d8f2d4072610 (patch)
treea52a7a493076bba6e3ec5a7f9442bb3e77a5e16e /src/hud/hudcontext.hpp
parent29339928d7a05ca11786885643631206a978655e (diff)
Add code
Diffstat (limited to 'src/hud/hudcontext.hpp')
-rw-r--r--src/hud/hudcontext.hpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/hud/hudcontext.hpp b/src/hud/hudcontext.hpp
new file mode 100644
index 0000000..5c1b8b8
--- /dev/null
+++ b/src/hud/hudcontext.hpp
@@ -0,0 +1,14 @@
+#pragma once
+
+#include <string>
+
+class HUDContext{
+public:
+ HUDContext();
+ short fps;
+ int fps_frame_counter;
+ std::string current_shader;
+ long long time;
+};
+
+