mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-23 10:09:43 +01:00
5bb12a7fc1
It seems appropriate that these rooms should have their names shown on the map screen.
17 lines
245 B
C++
17 lines
245 B
C++
#ifndef OTHERLEVEL_H
|
|
#define OTHERLEVEL_H
|
|
|
|
#include <string>
|
|
|
|
class otherlevelclass
|
|
{
|
|
public:
|
|
const short* loadlevel(int rx, int ry);
|
|
|
|
std::string roomname;
|
|
std::string hiddenname;
|
|
|
|
int roomtileset;
|
|
};
|
|
|
|
#endif /* OTHERLEVEL_H */
|