1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-25 22:18:30 +02:00
VVVVVV/desktop_version/src/Logic.h
Misa 2c138a4a60 Remove global args from Logic.cpp
This commit removes the passing around of global args in the logic
functions. Additionally, all 'dwgfx' has been replaced with 'graphics'
in Logic.cpp.
2020-04-03 10:40:50 -04:00

24 lines
309 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 towerlogic();
void gamelogic();
#endif /* LOGIC_H */