[Add] Dice & Refactor private names

This commit is contained in:
2026-03-02 11:22:01 +07:00
parent 4890fa946e
commit f65976796d
36 changed files with 883 additions and 489 deletions
+3 -3
View File
@@ -6,16 +6,16 @@ namespace YachtDice.Events
{
public class GameEventBus
{
private readonly ModifierPipeline pipeline;
private readonly ModifierPipeline _pipeline;
public GameEventBus(ModifierPipeline pipeline)
{
this.pipeline = pipeline;
this._pipeline = pipeline;
}
public UniTask<ModifierContext> Fire(TriggerType trigger, ModifierContext context)
{
return pipeline.Execute(trigger, context);
return _pipeline.Execute(trigger, context);
}
}
}