metabrush/src/app/MetaBrush/Document.hs

13 lines
318 B
Haskell
Raw Normal View History

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