summaryrefslogtreecommitdiff
path: root/src/Agent.hs
blob: bb9e284684862682ff1c6101341e072b39d03803 (plain)
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
  }