blob: fb06073666c78fd5f2a2096d70e5060e0cf609c2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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
|