[Fix] Naming
This commit is contained in:
@@ -23,7 +23,7 @@ namespace YachtDice.Game
|
||||
|
||||
public event Action<int> OnTurnStarted;
|
||||
public event Action<int> OnRollComplete;
|
||||
public event Action<CategoryDefinitionSO, int> OnScored;
|
||||
public event Action<CategoryDefinition, int> OnScored;
|
||||
public event Action<int> OnGameOver;
|
||||
|
||||
private void Start()
|
||||
@@ -76,7 +76,7 @@ namespace YachtDice.Game
|
||||
Debug.Log($"Dice {index + 1} (value={diceManager.GetValue(index)}): {(isLocked ? "LOCKED" : "UNLOCKED")}");
|
||||
}
|
||||
|
||||
public void ScoreInCategory(CategoryDefinitionSO category)
|
||||
public void ScoreInCategory(CategoryDefinition category)
|
||||
{
|
||||
if (!CanScore) return;
|
||||
if (scoringSystem.IsCategoryUsed(category)) return;
|
||||
|
||||
Reference in New Issue
Block a user