mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-23 01:59:43 +01:00
51 lines
894 B
C++
51 lines
894 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 fillbackground(std::vector<std::string>& tmap);
|
|
|
|
void fillminitower(std::vector<std::string>& tmap);
|
|
|
|
void loadminitower1();
|
|
|
|
void loadminitower2();
|
|
|
|
void loadbackground();
|
|
|
|
void fillcontents(std::vector<std::string>& tmap);
|
|
|
|
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 */
|