netserver/Miscutils.hs
changeset 1558 3370b7ffeb5c
parent 1513 a35c90263e27
child 1577 e3e37c730dc0
equal deleted inserted replaced
1557:0d1fa1d6d8d5 1558:3370b7ffeb5c
    56 		gameinprogress :: Bool,
    56 		gameinprogress :: Bool,
    57 		playersIn :: Int,
    57 		playersIn :: Int,
    58 		readyPlayers :: Int,
    58 		readyPlayers :: Int,
    59 		isRestrictedJoins :: Bool,
    59 		isRestrictedJoins :: Bool,
    60 		isRestrictedTeams :: Bool,
    60 		isRestrictedTeams :: Bool,
       
    61 		roundMsgs :: [String],
    61 		params :: Map.Map String [String]
    62 		params :: Map.Map String [String]
    62 	}
    63 	}
    63 createRoom = (
    64 createRoom = (
    64 	RoomInfo
    65 	RoomInfo
    65 		""
    66 		""
    70 		False
    71 		False
    71 		1
    72 		1
    72 		0
    73 		0
    73 		False
    74 		False
    74 		False
    75 		False
       
    76 		[]
    75 		Map.empty
    77 		Map.empty
    76 	)
    78 	)
    77 
    79 
    78 data ServerInfo =
    80 data ServerInfo =
    79 	ServerInfo
    81 	ServerInfo