12 lines
203 B
C#
12 lines
203 B
C#
|
|
public interface IRollBase
|
|
{
|
|
public int SixRollCount { get; }
|
|
|
|
public int MaxRollCount { get; }
|
|
|
|
void UpdateSixRollCount();
|
|
void UpdateMaxRollCount(int val);
|
|
void ResetRollData();
|
|
}
|