14 lines
No EOL
240 B
C#
14 lines
No EOL
240 B
C#
using System;
|
|
|
|
namespace WingsEmu.Game._ECS;
|
|
|
|
public interface ITickProcessable
|
|
{
|
|
Guid Id { get; }
|
|
string Name { get; }
|
|
|
|
/// <summary>
|
|
/// </summary>
|
|
/// <param name="date"></param>
|
|
void ProcessTick(DateTime date);
|
|
} |