mirror of
https://github.com/kwsch/NHSE.git
synced 2026-04-29 18:16:57 -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; }
|
|
}
|
|
}
|