mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-23 18:19:43 +01:00
86516bb284
They are now unused because we no longer have to parse 120, 100, or 700 strings in order to load these tilemaps.
45 lines
723 B
C++
45 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 */
|