mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-02-01 02:34:41 +03:00
Hello WWWWWWorld!
This commit is contained in:
51
desktop_version/src/Tower.h
Normal file
51
desktop_version/src/Tower.h
Normal file
@@ -0,0 +1,51 @@
|
||||
#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 */
|
||||
Reference in New Issue
Block a user