Create new files

This commit is contained in:
2021-09-08 17:41:40 +01:00
parent 643cd5a420
commit f3c5e3a177
5 changed files with 277 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
{-# LANGUAGE TemplateHaskell #-}
{-# LANGUAGE StrictData #-}
module Dodge.Creature.Memory.Data
where
import Geometry.Data
import Control.Lens
data MemoryState = MemoryState
{ _soundsToInvestigate :: [Point2]
}
makeLenses ''MemoryState