12 lines
372 B
C#
Raw Normal View History

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
{
}
}