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