refactor!: removed noise from class names

Renamed classes with names XBehaviour to X
This commit is contained in:
2025-07-09 22:19:44 +03:00
parent bc1c76d746
commit c8bb991865
11 changed files with 24 additions and 24 deletions

View File

@@ -2,7 +2,7 @@ using Syntriax.Engine.Core;
namespace Syntriax.Engine.Systems.Time;
public class StopwatchBehaviour : Behaviour, IUpdate, IStopwatch
public class Stopwatch : Behaviour, IUpdate, IStopwatch
{
public Event<IReadOnlyStopwatch> OnStarted { get; } = new();
public Event<IReadOnlyStopwatch, IReadOnlyStopwatch.StopwatchDeltaArguments> OnDelta { get; } = new();

View File

@@ -2,7 +2,7 @@ using Syntriax.Engine.Core;
namespace Syntriax.Engine.Systems.Time;
public class TickerBehaviour : StopwatchBehaviour, ITicker
public class Ticker : Stopwatch, ITicker
{
public Event<ITicker> OnTick { get; } = new();

View File

@@ -2,7 +2,7 @@ using Syntriax.Engine.Core;
namespace Syntriax.Engine.Systems.Time;
public class TimerBehaviour : Behaviour, IUpdate, ITimer
public class Timer : Behaviour, IUpdate, ITimer
{
public Event<IReadOnlyTimer> OnStarted { get; } = new();
public Event<IReadOnlyTimer, IReadOnlyTimer.TimerDeltaArguments> OnDelta { get; } = new();