1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-25 22:18:30 +02:00
VVVVVV/desktop_version/src/Finalclass.h
Misa d910800423 Remove global args from main game loadlevel() functions
This removes global args from Finalclass.cpp, Labclass.cpp,
Otherlevel.cpp, Spacestation2.cpp, and WarpClass.cpp.
2020-04-03 10:40:50 -04:00

21 lines
302 B
C++

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