NBTExplorer/Substrate/SubstrateCS/Source/Utility/Interface.cs
2011-04-06 21:20:35 +00:00

11 lines
180 B
C#

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