mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2025-01-25 18:24:59 +01:00
f8fd51fc95
This just adds booleans roomname_special to the level classes in preparation for the localization system to use them. This commit is part of rewritten history of the localization branch. The original (unsquashed) commit history can be found here: https://github.com/Dav999-v/VVVVVV/tree/localization-orig
14 lines
230 B
C++
14 lines
230 B
C++
#ifndef WARPCLASS_H
|
|
#define WARPCLASS_H
|
|
|
|
class warpclass
|
|
{
|
|
public:
|
|
const short* loadlevel(int rx, int ry);
|
|
const char* roomname;
|
|
bool roomname_special;
|
|
int rcol;
|
|
bool warpx, warpy;
|
|
};
|
|
|
|
#endif /* WARPCLASS_H */
|