using System;
namespace Substrate.Nbt
{
///
/// Additional options that modify the processing of a .
///
[Flags]
public enum SchemaOptions
{
///
/// Any with this option will not throw an error if the corresponding is missing.
///
OPTIONAL = 0x1,
///
/// If a cannot be found for a marked with this option, a sensible default will be created and inserted into the tree.
///
CREATE_ON_MISSING = 0x2,
}
}