blob: ad59b9098c51bf7094447d0f49d2f3b42774a6b1 (
plain)
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
27
28
29
|
#ifndef STAGE_H
#define STAGE_H
#include "player.h"
#include "shader.h"
#include "texture.h"
#include "enemy.h"
#include "bulletpattern.h"
#include <vector>
class Stage {
private:
Player* player;
GLShaderProgram* shader;
Texture* texture;
std::vector<Enemy*> enemy_list;
std::vector<BulletPattern*> patterns;
public:
Stage();
void update();
void draw();
};
#endif
|