Door connections

This commit is contained in:
Marco 2025-04-16 18:18:52 +02:00
commit 700be1e207
11 changed files with 127 additions and 149 deletions

View file

@ -9,6 +9,9 @@ public class RoomConnection
public bool IsLocked;
public bool IsSecret;
public Door FromDoor { get; set; }
public Door ToDoor { get; set; }
public RoomConnection(Vector2I from, Vector2I to, bool isLocked = false, bool isSecret = false)
{
From = from;