Refactor WarpClass.cpp to not use strings for tilemaps

They now use a constant int array instead.
This commit is contained in:
Misa
2020-05-17 14:21:52 -07:00
committed by Ethan Lee
parent cc0d5d1d79
commit 5126c4dbc4
3 changed files with 797 additions and 715 deletions

View File

@@ -10,7 +10,7 @@
class warpclass
{
public:
std::vector<std::string> loadlevel(int rx, int ry);
std::vector<int> loadlevel(int rx, int ry);
std::string roomname;
int coin, rcol;
bool warpx, warpy;