NBTExplorer/Substrate/SubstrateCS/Source/Core/Interface.cs

11 lines
177 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Substrate.Core
{
public interface ICopyable <T>
{
T Copy ();
}
}