Refactor, try to limit dependencies

This commit is contained in:
2022-07-28 00:59:56 +01:00
parent 8aa5c17ab9
commit 160560af5f
418 changed files with 15104 additions and 13342 deletions
+12 -9
View File
@@ -1,12 +1,15 @@
module Dodge.Default.Prop where
import Dodge.Data
import Dodge.Data.Prop
import Geometry
defaultProp :: Prop
defaultProp = ShapeProp
{ _prPos = V2 0 0
, _prDraw = PropDrawSPic mempty
, _prID = 0
, _prUpdate = PropUpdateId
, _prToggle = True
, _prRot = 0
}
defaultProp =
ShapeProp
{ _prPos = V2 0 0
, _prDraw = PropDrawSPic mempty
, _prID = 0
, _prUpdate = PropUpdateId
, _prToggle = True
, _prRot = 0
}