gameServer/Votes.hs
author Wohlstand
Wed, 22 Jan 2014 19:55:52 +0100
changeset 10054 6357b3099e1f
parent 10049 ca11d122f54e
child 10058 4ed428389c4e
permissions -rw-r--r--
Small update of my voice-pack Default_ru

module Votes where

import Data.Unique
import CoreTypes
import RoomsAndClients
import Control.Monad.Reader
import Control.Monad.State
import ServerState

voted :: Unique -> Bool -> Reader (ClientIndex, IRnC) [Action]
voted = undefined

startVote :: VoteType -> Reader (ClientIndex, IRnC) [Action]
startVote = undefined

checkVotes :: StateT ServerState IO ()
checkVotes = undefined