12 lines
277 B
C#
12 lines
277 B
C#
using System;
|
|
|
|
namespace RecrownedGTK.AssetsSystem.Information {
|
|
/// <summary>
|
|
/// Describes a serializable datatype.
|
|
/// Meant for use as a part of the asset pipeline.
|
|
/// </summary>
|
|
public interface IInfo
|
|
{
|
|
IDisposable CreateUseable();
|
|
}
|
|
} |