Files

9 lines
181 B
C#

namespace Beam.Abstractions;
public interface IState {
string[] GetState();
void SetState(string[] state);
new IState Copy();
IReadOnlyState AsReadOnly();
}