// var rm_TitleScreen = OS.R.Add("Default"); // var rm_Ocean = OS.R.Add("Ocean", { var rm_Ocean = OS.R.Add("Default", { width: pixel(64) * 50, //50x50 map of 64x64 squares. This will allow a single pixel on the map to represent a 64x square and fit comfortably on screen. height: pixel(64) * 50, backgroundColor: "#1b2632" }); function loadRooms() { // OS.AddScript("rooms/titleScreen.js"); OS.AddScript("rooms/oceanRoom.js"); // OS.SetRoom(rm_TitleScreen); OS.SetRoom(rm_Ocean); }