refactor: removed unnecessary overrides from Behaviour class

This commit is contained in:
2025-06-01 14:31:05 +03:00
parent f31b84f519
commit ac620264b1
7 changed files with 20 additions and 122 deletions

View File

@@ -18,9 +18,9 @@ public class TickerBehaviour : StopwatchBehaviour, ITicker
nextTick = Time + Period;
}
protected override void OnUpdate()
public override void Update()
{
base.OnUpdate();
base.Update();
while (Time > nextTick)
{