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

12 lines
180 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
2011-04-06 21:20:35 +00:00
namespace Substrate.Utility
{
public interface ICopyable <T>
{
T Copy ();
}
}