Updated room system and room API, more to come

There's a lot of verbosity in the scripts, so it might be beneficial to
redice that at some point.
This commit is contained in:
Kayne Ruse
2014-12-31 04:52:10 +11:00
parent f9c19a630d
commit 8e50be24d4
8 changed files with 93 additions and 46 deletions
+4 -4
View File
@@ -21,19 +21,19 @@
*/
#include "room_data.hpp"
std::string RoomData::SetRoomName(std::string s) {
std::string RoomData::SetName(std::string s) {
return roomName = s;
}
std::string RoomData::GetRoomName() {
std::string RoomData::GetName() {
return roomName;
}
std::string RoomData::SetTilesetName(std::string s) {
std::string RoomData::SetTileset(std::string s) {
return tilesetName = s;
}
std::string RoomData::GetTilesetName() {
std::string RoomData::GetTileset() {
return tilesetName;
}