forked from mirrors/NBTExplorer
12 lines
184 B
C#
12 lines
184 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace NBToolkit.Map.Utility
|
|||
|
{
|
|||
|
public interface ICopyable <T>
|
|||
|
{
|
|||
|
T Copy ();
|
|||
|
}
|
|||
|
}
|