NBTExplorer/Substrate/Utility/Interface.cs

12 lines
184 B
C#
Raw Normal View History

2011-04-06 04:40:27 +00:00
using System;
using System.Collections.Generic;
using System.Text;
namespace NBToolkit.Map.Utility
{
public interface ICopyable <T>
{
T Copy ();
}
}