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

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


class TestStage : public Stage
{
public:
    TestStage();
    void update(float dt) override;
    void draw() override;
    int total_bullets() const override;
private:
    Player m_player;
    ConstantVelocitySystem m_const;
    Enemy m_enemy;
};