Skip to content
Snippets Groups Projects
Commit 44b995f6 authored by Horváth Ádám's avatar Horváth Ádám
Browse files

lehet végleges

parent cc3b9186
No related branches found
No related tags found
No related merge requests found
#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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment