1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-25 22:18:30 +02:00
VVVVVV/desktop_version/src/titlerender.h
Misa 04d14000ec Remove global 'temp' variable from titlerender.cpp
Just a miscellaneous code cleanup.

There's no glitches that take advantage of the previous situation,
namely that 'temp' was a global variable in Logic.cpp and editor.cpp.
Even if there were, it seems like it would easily lead to some undefined
behavior. So it's good to clean this up.
2020-04-03 10:40:50 -04:00

26 lines
367 B
C

#ifndef TITLERENDERER_H
#define TITLERENDERER_H
#include "Graphics.h"
#include "UtilityClass.h"
#include "Maths.h"
#include "Entity.h"
#include "Map.h"
#include "Script.h"
void titlerender();
void towerrender();
void gamerender();
void maprender();
void teleporterrender();
void gamecompleterender();
void gamecompleterender2();
#endif /* TITLERENDERER_H */