mirror of
https://github.com/kwsch/NHSE.git
synced 2026-04-20 07:27:25 -05:00
7 lines
114 B
C#
7 lines
114 B
C#
namespace NHSE.Core;
|
|
|
|
public interface ICopyableItem<in T>
|
|
{
|
|
void CopyFrom(T item);
|
|
int Size { get; }
|
|
} |