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,38 @@
#ifndef OTHERLEVEL_H
#define OTHERLEVEL_H
#include "Game.h"
#include "Entity.h"
#include <string>
#include <vector>
class otherlevelclass
{
public:
enum
{
BLOCK = 0,
TRIGGER,
DAMAGE,
DIRECTIONAL,
SAFE,
ACTIVITY
};
otherlevelclass();
void addline(std::string t);
std::vector<std::string> loadlevel(int rx, int ry , Game& game, entityclass& obj);
std::string roomname;
int roomtileset;
int i;
// roomtext thing in other level
bool roomtexton;
int roomtextx, roomtexty, roomtextnumlines;
std::vector<std::string> roomtext;
};
#endif /* OTHERLEVEL_H */