mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-11-17 16:39:42 +01:00
18 lines
302 B
C++
18 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 */
|