mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-11-10 21:19:43 +01:00
d910800423
This removes global args from Finalclass.cpp, Labclass.cpp, Otherlevel.cpp, Spacestation2.cpp, and WarpClass.cpp.
19 lines
285 B
C++
19 lines
285 B
C++
#ifndef WARPCLASS_H
|
|
#define WARPCLASS_H
|
|
|
|
#include "Game.h"
|
|
#include "Entity.h"
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
class warpclass
|
|
{
|
|
public:
|
|
std::vector<std::string> loadlevel(int rx, int ry);
|
|
std::string roomname;
|
|
int coin, rcol;
|
|
bool warpx, warpy;
|
|
};
|
|
|
|
#endif /* WARPCLASS_H */
|