NBTExplorer/Substrate/SubstrateCS/Source/Utility/Interface.cs
2011-04-06 07:40:38 +00:00

11 lines
184 B
C#

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