1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-26 14:38:30 +02:00
VVVVVV/desktop_version/src/Tower.h
Misa 86516bb284 Remove now-unused fillbackground/fillcontents/fillminitower from Tower
They are now unused because we no longer have to parse 120, 100, or 700
strings in order to load these tilemaps.
2020-05-17 22:03:29 -04:00

46 lines
723 B
C++

#ifndef TOWER_H
#define TOWER_H
#include <string>
#include <vector>
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();
//public var back:Array = new Array();
//public var contents:Array = new Array();
//public var minitower:Array = new Array();
//public var vmult:Array = new Array();
std::vector<int> back;
std::vector<int> contents;
std::vector<int> minitower;
std::vector<int> vmult;
bool minitowermode;
int i;
int k;
};
#endif /* TOWER_H */