1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-17 18:18:30 +02:00
VVVVVV/desktop_version/src/Finalclass.h
Misa 3b6867243b Remove useless attribute rcol from finalclass
The rcol of finalclass is always 6, so there's no reason to have an
attribute there as if you could change it or anything.
2020-07-08 19:14:21 -04:00

19 lines
250 B
C++

#ifndef FINALCLASS_H
#define FINALCLASS_H
#include "Game.h"
#include "Entity.h"
#include <string>
class finalclass
{
public:
const int* loadlevel(int rx, int ry);
std::string roomname;
bool warpx, warpy;
};
#endif /* FINALCLASS_H */