mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-11-10 21:19:43 +01:00
8a573af273
They are now stored in const int arrays instead. Except for the Prize for the Reckless room, which I made sure had its spikes removed in No Death Mode and the Time Trial.
17 lines
261 B
C++
17 lines
261 B
C++
#ifndef SPACESTATION2_H
|
|
#define SPACESTATION2_H
|
|
|
|
#include "Game.h"
|
|
#include "Entity.h"
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
class spacestation2class
|
|
{
|
|
public:
|
|
std::vector<int> loadlevel(int rx, int ry);
|
|
std::string roomname;
|
|
};
|
|
|
|
#endif /* SPACESTATION2_H */
|