affection/src/Affection/Actor.hs

13 lines
264 B
Haskell
Raw Normal View History

2017-03-18 16:38:26 +00:00
-- | This module implements the Actor, a Datastructure binding a 'G.GeglNode'
-- to a game asset
module Affection.Actor
( Actor(..)
) where
import qualified GEGL as G
data Actor = Actor
{ actorProperties :: [G.Property]
, actorNode :: G.GeglNode
}