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

#include <memory>

#include "Screen.h"


class Game
{
public:
    void set(std::unique_ptr<Screen> screen);
    void update(float dt);
    void draw();

private:
    std::unique_ptr<Screen> m_screen;
};