mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-11-10 21:19:43 +01:00
c040ceda29
This doesn't change anything functionality-wise, but it does remove a lot of duplicate code, which makes it easier to work on.
21 lines
289 B
C
21 lines
289 B
C
#ifndef LOGIC_H
|
|
#define LOGIC_H
|
|
|
|
#include "Graphics.h"
|
|
#include "Game.h"
|
|
#include "Entity.h"
|
|
#include "UtilityClass.h"
|
|
#include "Music.h"
|
|
#include "Map.h"
|
|
|
|
void titlelogic();
|
|
|
|
void maplogic();
|
|
|
|
void gamecompletelogic();
|
|
|
|
void gamecompletelogic2();
|
|
|
|
void gamelogic();
|
|
|
|
#endif /* LOGIC_H */
|