recrownedgtk/RecrownedGTK/AssetsSystem/Information/IInfo.cs

9 lines
167 B
C#
Raw Normal View History

using System;
namespace RecrownedGTK.AssetsSystem.Information {
public interface IInfo
{
Type type {get;}
IDisposable CreateUseable();
}
}