home projects git about
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
module Agent ( ) where import Mind (Network (..)) data Agent a = Agent { id :: Int , net :: Network , state :: [Float] , x :: Int , y :: Int , flags :: a }