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