1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-26 14:38:30 +02:00
VVVVVV/desktop_version/src/Labclass.h
Misa cc0d5d1d79 Refactor Labclass.cpp to not use strings for tilemaps
They now use a const int array instead.
2020-05-17 22:03:29 -04:00

19 lines
263 B
C++

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