1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-29 07:58:30 +02:00
VVVVVV/desktop_version/src/Otherlevel.h
Misa 5bb12a7fc1 Set Secret Lab/Super Gravitron hidden names
It seems appropriate that these rooms should have their names shown on
the map screen.
2021-08-22 20:33:03 -07:00

18 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 */