9 lines
167 B
C#
9 lines
167 B
C#
|
using System;
|
||
|
|
||
|
namespace RecrownedGTK.AssetsSystem.Information {
|
||
|
public interface IInfo
|
||
|
{
|
||
|
Type type {get;}
|
||
|
IDisposable CreateUseable();
|
||
|
}
|
||
|
}
|