1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-18 02:28:30 +02:00
VVVVVV/desktop_version/src/Logic.h
Misa 4c5b018f6c Fix delta rendering glitch when going to options from new Esc menu
Well this is a bit annoying. I can call graphics.updatetowerbackground()
just fine, but I have to get at the title color update routine inside
titlelogic(), which is hard-baked in. So I have to pull that code
outside of the function, export it in the header, and then call it when
I transition to TITLEMODE.
2020-06-23 15:23:57 -04:00

24 lines
317 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 titleupdatetextcol();
void titlelogic();
void maplogic();
void gamecompletelogic();
void gamecompletelogic2();
void gamelogic();
#endif /* LOGIC_H */