using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Windows.Navigation; using System.Windows.Shapes; namespace CAPSTONE_4 { class Room { public List RoomObstacles = new List(); public List RoomWalls = new List(); public List RoomCameras = new List(); public Room() { RoomObstacles = new List(); RoomWalls = new List(); RoomCameras = new List(); } public Room(List obstacles, List walls, List cameras) { RoomObstacles = obstacles; RoomWalls = walls; RoomCameras = cameras; } void SetRoomWalls(List walls) { RoomWalls = walls; } } }