refactor: removed unnecessary overrides from Behaviour class
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user