Hello WWWWWWorld!

This commit is contained in:
Ethan Lee
2020-01-01 15:29:24 -05:00
commit f7c0321b71
133 changed files with 154973 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
#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 , Game& game, entityclass& obj);
std::string roomname;
int coin, rcol;
bool warpx, warpy;
};
#endif /* WARPCLASS_H */