implemented confirmGoalDataC

This commit is contained in:
Jonathan Lamothe
2019-10-01 00:58:15 -04:00
parent 66148a25d8
commit 2be7d2bf1d
3 changed files with 43 additions and 3 deletions
+6 -1
View File
@@ -128,7 +128,8 @@ module Mtlstats.Types (
pPoints,
playerSearch,
playerSearchExact,
modifyPlayer
modifyPlayer,
playerSummary
) where
import Control.Monad.Trans.State (StateT)
@@ -713,3 +714,7 @@ modifyPlayer f n = map
(\p -> if p^.pName == n
then f p
else p)
-- | Provides a short summary string for a player
playerSummary :: Player -> String
playerSummary = undefined