using System;
namespace PixiEditor.SDK.FileParsers
{
[Flags]
public enum DocumentFileFeatures
{
///
/// Supports all features that a .pixi file supports
///
All = Basic | Layers | Swatches,
///
/// Supports saving image, store document size, ... This is required
///
Basic = 0,
Layers = 1,
Swatches = 2
}
}