2020-01-01 21:29:24 +01:00
|
|
|
#ifndef LOGIC_H
|
|
|
|
#define LOGIC_H
|
|
|
|
|
|
|
|
#include "Graphics.h"
|
|
|
|
#include "Game.h"
|
|
|
|
#include "Entity.h"
|
|
|
|
#include "UtilityClass.h"
|
|
|
|
#include "Music.h"
|
|
|
|
#include "Map.h"
|
|
|
|
|
2020-04-01 23:48:11 +02:00
|
|
|
void titlelogic();
|
2020-01-01 21:29:24 +01:00
|
|
|
|
2020-04-01 23:48:11 +02:00
|
|
|
void maplogic();
|
2020-01-01 21:29:24 +01:00
|
|
|
|
2020-04-01 23:48:11 +02:00
|
|
|
void gamecompletelogic();
|
2020-01-01 21:29:24 +01:00
|
|
|
|
2020-04-01 23:48:11 +02:00
|
|
|
void gamecompletelogic2();
|
2020-01-01 21:29:24 +01:00
|
|
|
|
2020-04-01 23:48:11 +02:00
|
|
|
void gamelogic();
|
2020-01-01 21:29:24 +01:00
|
|
|
|
|
|
|
#endif /* LOGIC_H */
|