1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-25 22:18:30 +02:00
VVVVVV/desktop_version/src/Labclass.h
2020-01-08 10:37:50 -05:00

19 lines
302 B
C++

#ifndef LABCLASS_H
#define LABCLASS_H
#include "Game.h"
#include "Entity.h"
#include <vector>
#include <string>
class labclass
{
public:
std::vector<std::string> loadlevel(int rx, int ry , Game& game, entityclass& obj);
std::string roomname;
int coin, rcol;
};
#endif /* LABCLASS_H */