2020-04-18 03:09:13 +00:00
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace RecrownedGTK.AssetsSystem.Information {
|
2020-05-18 19:07:25 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Describes a serializable datatype.
|
|
|
|
/// Meant for use as a part of the asset pipeline.
|
|
|
|
/// </summary>
|
2020-04-18 03:09:13 +00:00
|
|
|
public interface IInfo
|
|
|
|
{
|
|
|
|
IDisposable CreateUseable();
|
|
|
|
}
|
|
|
|
}
|