update game_view to handle targeting

This commit is contained in:
stryan 2021-11-10 18:00:27 -05:00
parent 972270d667
commit 091855a5ec
1 changed files with 2 additions and 0 deletions

View File

@ -15,6 +15,8 @@ func NewView(id int, g *Game) *GameView {
CurrentTurn: g.CurrentTurn,
CanDraw: g.CanDraw,
HasDrawn: g.HasDrawn,
QueuedEffect: g.QueuedEffect,
TargetReq: g.TargetReq,
Status: g.Status,
}
}