12 lines
203 B
C#
Raw Permalink Normal View History

2026-02-11 19:53:16 +05:30
public interface IRollBase
{
public int SixRollCount { get; }
public int MaxRollCount { get; }
void UpdateSixRollCount();
void UpdateMaxRollCount(int val);
void ResetRollData();
}