using System; namespace RecrownedGTK.AssetsSystem.Information { /// /// Describes a serializable datatype. /// Meant for use as a part of the asset pipeline. /// public interface IInfo { IDisposable CreateUseable(); } }