1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-18 10:38:31 +02:00
VVVVVV/desktop_version/src/Tower.h

36 lines
475 B
C
Raw Normal View History

2020-01-01 21:29:24 +01:00
#ifndef TOWER_H
#define TOWER_H
class towerclass
{
public:
towerclass();
int backat(int xp, int yp, int yoff);
int at(int xp, int yp, int yoff);
int miniat(int xp, int yp, int yoff);
void loadminitower1();
void loadminitower2();
void loadbackground();
void loadmap();
short back[40 * 120];
short contents[40 * 700];
short minitower[40 * 100];
int vmult[40 * 700];
2020-01-01 21:29:24 +01:00
bool minitowermode;
};
#endif /* TOWER_H */