mirror of
https://github.com/kwsch/NHSE.git
synced 2026-05-01 02:56:59 -05:00
9 lines
137 B
C#
9 lines
137 B
C#
namespace NHSE.Core
|
|
{
|
|
public interface ICopyableItem<in T>
|
|
{
|
|
void CopyFrom(T item);
|
|
int Size { get; }
|
|
}
|
|
}
|