1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-29 07:58:30 +02:00
VVVVVV/desktop_version/src/Finalclass.h

21 lines
302 B
C
Raw Normal View History

2020-01-01 21:29:24 +01:00
#ifndef FINALCLASS_H
#define FINALCLASS_H
#include "Game.h"
#include "Entity.h"
#include <string>
#include <vector>
class finalclass
{
public:
std::vector<std::string> loadlevel(int rx, int ry);
2020-01-01 21:29:24 +01:00
std::string roomname;
int coin, rcol;
bool warpx, warpy;
};
#endif /* FINALCLASS_H */