greenstack / spite-framework

The Spite Framework is a C# library meant to simplify designing and implementing turn-based gameplay by providing some boilerplate code.
MIT License
6 stars 0 forks source link

Update tappable characters to consume "actions" #61

Closed greenstack closed 1 year ago

greenstack commented 2 years ago

Many games allow characters to perform multiple types of actions in a turn before getting tapped. Storing this as an integer would grant much more flexibility than a binary "is (not) tapped." New methods should include ConsumeAction(int) and perhaps ConsumeAllActions.