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