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

#include <memory>

#include <raylib.h>

#include "Screen.h"
#include "Stage.h"
#include "Stats.h"


class GameScreen : public Screen
{
public:
    explicit GameScreen(std::unique_ptr<Stage> stage);
    void update(float dt) override;
    void draw() override;
private:
    std::unique_ptr<Stage> m_stage;
    std::shared_ptr<Stats> m_stats;
};