Skip to content

Commit

Permalink
Fix card actions
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmfinol committed Jul 12, 2024
1 parent ce4caa3 commit 420bf52
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions FinolDigital.Cgs.CardGameDef/CardAction.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ namespace FinolDigital.Cgs.CardGameDef
public enum CardAction
{
[EnumMember(Value = "move")] Move,
[EnumMember(Value = "flip")] Flip,
[EnumMember(Value = "rotate")] Rotate,
[EnumMember(Value = "tap")] Tap,
[EnumMember(Value = "zoom")] Zoom
[EnumMember(Value = "flip")] Flip,
[EnumMember(Value = "discard")] Discard
}
}
8 changes: 4 additions & 4 deletions schema/CardGameDef.json
Original file line number Diff line number Diff line change
Expand Up @@ -695,17 +695,17 @@
"description": "",
"x-enumNames": [
"Move",
"Flip",
"Rotate",
"Tap",
"Zoom"
"Flip",
"Discard"
],
"enum": [
"move",
"flip",
"rotate",
"tap",
"zoom"
"flip",
"discard"
]
},
"GamePlayZone": {
Expand Down

0 comments on commit 420bf52

Please sign in to comment.