10 lines
212 B
C#
10 lines
212 B
C#
namespace mROA.Abstract
|
|
{
|
|
public interface IStorage<T> where T : class
|
|
{
|
|
T? GetValue(int index);
|
|
int GetIndex(T value);
|
|
int Place(T value);
|
|
void Free(int index);
|
|
}
|
|
} |