AlicizaX/Client/Assets/Scripts/New/Example/Battle/IBattleLoopService.cs
2026-03-25 18:33:59 +08:00

10 lines
170 B
C#

namespace Aliciza.Services.Example
{
public interface IBattleLoopService : IService
{
float ElapsedTime { get; }
int PulseCount { get; }
}
}