using System; namespace RecrownedGTK.AssetsSystem.Information { /// /// An interface that describes an information class. /// An information class is class that can produce a useable asset object. /// In the asset pipeline, this is the second step, after loading the asset data. /// public interface IInformation { } }