AlicizaX/Client/Assets/Scripts/New/Example/Battle/IBattleLoopService.cs

10 lines
170 B
C#
Raw Normal View History

2026-03-25 18:33:59 +08:00
namespace Aliciza.Services.Example
{
public interface IBattleLoopService : IService
{
float ElapsedTime { get; }
int PulseCount { get; }
}
}