mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-11-16 16:09:42 +01:00
21 lines
332 B
C
21 lines
332 B
C
|
#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, Game& game, entityclass& obj);
|
||
|
|
||
|
std::string roomname;
|
||
|
int coin, rcol;
|
||
|
bool warpx, warpy;
|
||
|
};
|
||
|
|
||
|
#endif /* FINALCLASS_H */
|