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

12 lines
184 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
namespace NBToolkit.Map.Utility
{
public interface ICopyable <T>
{
T Copy ();
}
}