This repository has been archived on 2022-12-14. You can view files and clone it, but cannot push or open issues or pull requests.
WaveGGJ17/VaporWaveWars/mygame.hpp
2017-01-20 23:13:36 +01:00

18 lines
397 B
C++

#ifndef MYGAME_HPP
#define MYGAME_HPP
#include "game.hpp"
#include "compas.hpp"
class MyGame : public Game{
public:
MyGame();
virtual ~MyGame();
private:
Compas compas, compas2;
GameState::gameState _state;
virtual void update(float deltaTime, sf::RenderWindow *window) final override;
virtual void draw(sf::RenderWindow *window) final override;
};
#endif // MYGAME_HPP