mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-11-13 06:29:41 +01:00
a1fd4c6f02
This removes all global args from functions in Input.cpp. Additionally, 'dwgfx' has been renamed to 'graphics' in Input.cpp.
24 lines
335 B
C
24 lines
335 B
C
#ifndef INPUT_H
|
|
#define INPUT_H
|
|
|
|
#include "KeyPoll.h"
|
|
#include "Graphics.h"
|
|
#include "Game.h"
|
|
#include "Entity.h"
|
|
#include "UtilityClass.h"
|
|
#include "Music.h"
|
|
#include "Map.h"
|
|
|
|
void titleinput();
|
|
|
|
void gameinput();
|
|
|
|
void mapinput();
|
|
|
|
void teleporterinput();
|
|
|
|
void gamecompleteinput();
|
|
|
|
void gamecompleteinput2();
|
|
|
|
#endif /* INPUT_H */
|