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 876c120ed8 Remove unused coin attributes from finalclass and warpclass
Looks like coins were basically a scrapped mechanic, although I'm not
sure what these attributes were for. I guess counting the number of
coins in each room? But why, when you can just make a function to count
them automatically? Whatever.
2020-07-08 19:14:21 -04:00

18 lines
232 B
C++

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