gameServer/CoreTypes.hs
changeset 10732 7c4f9e5e447c
parent 10482 b49b82351ad3
child 10786 712283ed86e0
equal deleted inserted replaced
10730:eac6a4d53752 10732:7c4f9e5e447c
   160     deriving (Show, Read)
   160     deriving (Show, Read)
   161 
   161 
   162 data TeamInfo =
   162 data TeamInfo =
   163     TeamInfo
   163     TeamInfo
   164     {
   164     {
   165         teamownerId :: ClientIndex,
       
   166         teamowner :: B.ByteString,
   165         teamowner :: B.ByteString,
   167         teamname :: B.ByteString,
   166         teamname :: B.ByteString,
   168         teamcolor :: B.ByteString,
   167         teamcolor :: B.ByteString,
   169         teamgrave :: B.ByteString,
   168         teamgrave :: B.ByteString,
   170         teamfort :: B.ByteString,
   169         teamfort :: B.ByteString,
   171         teamvoicepack :: B.ByteString,
   170         teamvoicepack :: B.ByteString,
   172         teamflag :: B.ByteString,
   171         teamflag :: B.ByteString,
       
   172         isOwnerRegistered :: Bool,
   173         difficulty :: Int,
   173         difficulty :: Int,
   174         hhnum :: Int,
   174         hhnum :: Int,
   175         hedgehogs :: [HedgehogInfo]
   175         hedgehogs :: [HedgehogInfo]
   176     }
   176     }
   177     deriving (Show, Read)
   177     deriving (Show, Read)