summaryrefslogtreecommitdiffhomepage
path: root/TestStage.h
blob: 10164cd02b8c9b62eb244ece962c9adcd317fb67 (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 "ExampleGenerator.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;
    ExampleGenerator m_generator;
};