1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-29 07:58:30 +02:00
VVVVVV/desktop_version/src/WarpClass.h
Misa c64fd89325 Untabify every single file
YOLO.

This is a repeat of #642. As before, I just did

    rg -l '\t' | xargs -n 1 sed -i -e 's/\t/    /g'

inside the desktop_version/ folder.
2021-09-06 18:56:39 -07:00

16 lines
222 B
C++

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