mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2025-01-08 18:09:45 +01:00
Fix trailing whitespace in CustomLevels.h
Really not sure how they got there. I think it was because of my naive indentation fix, so.
This commit is contained in:
parent
f9573a036d
commit
491f3732aa
1 changed files with 10 additions and 10 deletions
|
@ -75,16 +75,16 @@ public:
|
||||||
std::string Desc2;
|
std::string Desc2;
|
||||||
std::string Desc3;
|
std::string Desc3;
|
||||||
std::string website;
|
std::string website;
|
||||||
|
|
||||||
std::vector<LevelMetaData> ListOfMetaData;
|
std::vector<LevelMetaData> ListOfMetaData;
|
||||||
|
|
||||||
void loadZips(void);
|
void loadZips(void);
|
||||||
void getDirectoryData(void);
|
void getDirectoryData(void);
|
||||||
bool getLevelMetaData(const std::string& filename, LevelMetaData& _data );
|
bool getLevelMetaData(const std::string& filename, LevelMetaData& _data );
|
||||||
|
|
||||||
void reset(void);
|
void reset(void);
|
||||||
const int* loadlevel(int rxi, int ryi);
|
const int* loadlevel(int rxi, int ryi);
|
||||||
|
|
||||||
int gettileidx(
|
int gettileidx(
|
||||||
const int rx,
|
const int rx,
|
||||||
const int ry,
|
const int ry,
|
||||||
|
@ -105,7 +105,7 @@ public:
|
||||||
const int y
|
const int y
|
||||||
);
|
);
|
||||||
int getabstile(const int x, const int y);
|
int getabstile(const int x, const int y);
|
||||||
|
|
||||||
int getroompropidx(const int rx, const int ry);
|
int getroompropidx(const int rx, const int ry);
|
||||||
const RoomProperty* getroomprop(const int rx, const int ry);
|
const RoomProperty* getroomprop(const int rx, const int ry);
|
||||||
#define FOREACH_PROP(NAME, TYPE) \
|
#define FOREACH_PROP(NAME, TYPE) \
|
||||||
|
@ -120,17 +120,17 @@ public:
|
||||||
bool save(const std::string& _path);
|
bool save(const std::string& _path);
|
||||||
#endif
|
#endif
|
||||||
void generatecustomminimap(void);
|
void generatecustomminimap(void);
|
||||||
|
|
||||||
int findtrinket(int t);
|
int findtrinket(int t);
|
||||||
int findcrewmate(int t);
|
int findcrewmate(int t);
|
||||||
int findwarptoken(int t);
|
int findwarptoken(int t);
|
||||||
void findstartpoint(void);
|
void findstartpoint(void);
|
||||||
int getlevelcol(const int tileset, const int tilecol);
|
int getlevelcol(const int tileset, const int tilecol);
|
||||||
int getenemycol(int t);
|
int getenemycol(int t);
|
||||||
|
|
||||||
//Colouring stuff
|
//Colouring stuff
|
||||||
int getwarpbackground(int rx, int ry);
|
int getwarpbackground(int rx, int ry);
|
||||||
|
|
||||||
static const int maxwidth = 20, maxheight = 20; //Special; the physical max the engine allows
|
static const int maxwidth = 20, maxheight = 20; //Special; the physical max the engine allows
|
||||||
static const int numrooms = maxwidth * maxheight;
|
static const int numrooms = maxwidth * maxheight;
|
||||||
int contents[40 * 30 * numrooms];
|
int contents[40 * 30 * numrooms];
|
||||||
|
@ -141,9 +141,9 @@ public:
|
||||||
|
|
||||||
int levmusic;
|
int levmusic;
|
||||||
int mapwidth, mapheight; //Actual width and height of stage
|
int mapwidth, mapheight; //Actual width and height of stage
|
||||||
|
|
||||||
int version;
|
int version;
|
||||||
|
|
||||||
Uint32 getonewaycol(const int rx, const int ry);
|
Uint32 getonewaycol(const int rx, const int ry);
|
||||||
Uint32 getonewaycol(void);
|
Uint32 getonewaycol(void);
|
||||||
bool onewaycol_override;
|
bool onewaycol_override;
|
||||||
|
|
Loading…
Reference in a new issue