mirror of
https://gitlab.com/sheaf/metabrush.git
synced 2024-11-06 07:13:37 +00:00
13 lines
318 B
Haskell
13 lines
318 B
Haskell
|
module MetaBrush.Document where
|
||
|
|
||
|
--------------------------------------------------------------------------------
|
||
|
|
||
|
data Document
|
||
|
= Document
|
||
|
{ displayName :: !Text
|
||
|
, filePath :: !(Maybe FilePath)
|
||
|
, unsavedChanges :: !Bool
|
||
|
, viewport :: !AABB
|
||
|
, strokes :: !(Set Stroke)
|
||
|
}
|