Files
CortexCore fd39099061 init
2024-01-23 02:56:26 +08:00

9 lines
136 B
C#

namespace BITKit.IO
{
public interface IAsset
{
string Name { get; set; }
byte[] Buffer{ get; set; }
}
}