1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-01 18:43:33 +02:00
VVVVVV/desktop_version/src/Finalclass.h
Dav999-v f8fd51fc95 Indicate what special roomnames are in the levels
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
2022-12-31 20:04:56 -08:00

15 lines
221 B
C++

#ifndef FINALCLASS_H
#define FINALCLASS_H
class finalclass
{
public:
const short* loadlevel(int rx, int ry);
const char* roomname;
bool roomname_special;
bool warpx, warpy;
};
#endif /* FINALCLASS_H */