--[[ --Contains the code for a home --]] local home = {} local home_base = { add_room = function(self,fromroom,direction) end, rooms = { }, serialize = function(self) end, deserialize = function(self,data) end, add_item_to_room = function(self,room,item,location_desc) end } local home_m = {__index=home_base} function home.new(player_name,data) local ret = { created_by=player_name } return ret end return home