#ifndef OTHERLEVEL_H #define OTHERLEVEL_H #include "Game.h" #include "Entity.h" #include #include class otherlevelclass { public: enum { BLOCK = 0, TRIGGER, DAMAGE, DIRECTIONAL, SAFE, ACTIVITY }; otherlevelclass(); void addline(std::string t); std::vector 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 roomtext; }; #endif /* OTHERLEVEL_H */