refactor!: removed noise from class names
Renamed classes with names XBehaviour to X
This commit is contained in:
@@ -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();
|
@@ -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();
|
||||
|
@@ -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();
|
Reference in New Issue
Block a user