1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-26 14:38:30 +02:00
VVVVVV/desktop_version/src/WarpClass.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

19 lines
247 B
C++

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