Separate out creature data
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
{-# LANGUAGE TemplateHaskell #-}
|
||||
{-# LANGUAGE StrictData #-}
|
||||
module Dodge.Data.Creature.State where
|
||||
import Dodge.Data.Damage
|
||||
import Dodge.Creature.State.Data
|
||||
import Control.Lens
|
||||
|
||||
data CreatureState = CrSt
|
||||
{ _csDamage :: [Damage]
|
||||
, _csSpState :: CrSpState
|
||||
, _csDropsOnDeath :: CreatureDropType
|
||||
}
|
||||
makeLenses ''CreatureState
|
||||
Reference in New Issue
Block a user