aboutsummaryrefslogtreecommitdiff
path: root/src/core/corepublic.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/corepublic.hpp')
-rw-r--r--src/core/corepublic.hpp26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/core/corepublic.hpp b/src/core/corepublic.hpp
new file mode 100644
index 0000000..fb06073
--- /dev/null
+++ b/src/core/corepublic.hpp
@@ -0,0 +1,26 @@
+#ifndef COREPUBLIC_H
+#define COREPUBLIC_H
+#include "smelt.hpp"
+#include "smttfont.hpp"
+#include "bullet.hpp"
+#include "player.hpp"
+#include "../master/master.hpp"
+class gameScene:public scenePrototype
+{
+private:
+ bool tpmode;
+ static SMELT *sm;
+ SMTRG rtarget;
+ smQuad tgquad;
+ smTTFont ttfont;
+ float udly;
+ int utime;
+public:
+ gameScene();
+ ~gameScene();
+ bool sceneUpdate()override;
+ bool sceneRender()override;
+ bool threadUpdate()override;
+};
+extern gameScene* gameScn;
+#endif