metabrush/src/app/MetaBrush/Document.hs

14 lines
323 B
Haskell
Raw Normal View History

2020-08-04 06:15:06 +00:00
module MetaBrush.Document where
--------------------------------------------------------------------------------
2020-08-05 20:23:16 +00:00
{-
2020-08-04 06:15:06 +00:00
data Document
= Document
{ displayName :: !Text
, filePath :: !(Maybe FilePath)
, unsavedChanges :: !Bool
, viewport :: !AABB
, strokes :: !(Set Stroke)
}
2020-08-05 20:23:16 +00:00
-}