--- a/gameServer/ServerState.hs Sun Jan 12 11:07:49 2014 +0400
+++ b/gameServer/ServerState.hs Sun Jan 12 15:15:59 2014 +0400
@@ -1,6 +1,7 @@
module ServerState
(
module RoomsAndClients,
+ module JoinsMonitor,
clientRoomA,
ServerState(..),
client's,
@@ -17,12 +18,14 @@
----------------------
import RoomsAndClients
import CoreTypes
+import JoinsMonitor
data ServerState = ServerState {
clientIndex :: !(Maybe ClientIndex),
serverInfo :: !ServerInfo,
removedClients :: !(Set.Set ClientIndex),
- roomsClients :: !MRnC
+ roomsClients :: !MRnC,
+ joinsMonitor :: !JoinsMonitor
}