using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace UniversalEditor.ObjectModels.Kronosaur.ResourceTable
{
public enum ResourceTableEntryFlags : int
{
///
/// No flags are specified.
///
None = 0x00000000,
///
/// The resource is compressed with the Zlib algorithm.
///
CompressZlib = 0x00000001
}
}