implemented Mtlstats.Control.EditStandings.valsFor

This commit is contained in:
Jonathan Lamothe 2020-01-15 01:05:45 -05:00
parent 107ed507e2
commit 18683c1c6e

View File

@ -46,4 +46,10 @@ header = do
return $ C.drawString $ unlines $ table ++ [""]
valsFor :: GameStats -> [Int]
valsFor = undefined
valsFor gs =
[ gs^.gmsWins
, gs^.gmsLosses
, gs^.gmsOvertime
, gs^.gmsGoalsFor
, gs^.gmsGoalsAgainst
]