Select Git revision
application.hpp
application.hpp 483 B
#ifndef APPLICATION_HPP_INCLUDED
#define APPLICATION_HPP_INCLUDED
#include "/Users/horvathadam/Desktop/ITK_graphicslib-master/graphics.hpp"
#include "widgets.hpp"
#include <vector>
class Application
{
protected:
std::vector<Widget *> widgets;
bool game = true;
public:
Application(int);
virtual ~Application(){}
bool checker(int, int);
void event_loop();
void registerWidget(Widget *);
void gameover(int);
};
#endif // APPLICATION_HPP_INCLUDED