added some stuff

This commit is contained in:
2025-08-24 08:06:04 -05:00
parent a1877e7ddb
commit 30793101df
5 changed files with 10 additions and 7 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<string>CharacterEnabledActions = new List<string>();
}