summaryrefslogtreecommitdiffhomepage
path: root/TestStage.h
blob: 44a1967ad344b1ea7c7031792b88f0594eb35ee5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#pragma once

#include <vector>

#include "ConstantVelocity.h"
#include "Enemy.h"
#include "Flash.h"
#include "Player.h"
#include "Stage.h"


class TestStage : public Stage
{
public:
    TestStage();
    void update(float dt) override;
    void draw() override;
private:
    ConstantVelocitySystem m_const;
    std::vector<Enemy> m_enemies;
    Flash m_flash;
};