10 lines
170 B
C#
10 lines
170 B
C#
|
|
namespace Aliciza.Services.Example
|
||
|
|
{
|
||
|
|
public interface IBattleLoopService : IService
|
||
|
|
{
|
||
|
|
float ElapsedTime { get; }
|
||
|
|
|
||
|
|
int PulseCount { get; }
|
||
|
|
}
|
||
|
|
}
|