Re-add changes to interface so far. Broken at time of commit.

This commit is contained in:
2025-08-24 07:47:14 -05:00
parent 8e458da61e
commit a1877e7ddb
6 changed files with 6 additions and 12 deletions

View File

@@ -6,5 +6,5 @@ public abstract class Character
public bool dead {get; set;} = false;
public string turnMarker = "*";
public bool isTurn {get; set;} = false;
//public List<Actions>CharacterEnabledActions = new List<Actions>();
public List<Actions>CharacterEnabledActions = new List<Actions>();
}