recrownedgtk/RecrownedGTK/AssetsSystem/Information/IInformation.cs

12 lines
372 B
C#

using System;
namespace RecrownedGTK.AssetsSystem.Information {
/// <summary>
/// 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.
/// </summary>
public interface IInformation
{
}
}