module Agent ( ) where import Mind (Network (..)) data Agent a = Agent { id :: Int , net :: Network , state :: [Float] , x :: Int , y :: Int , flags :: a }