server-master/srcs/WingsAPI.Game/Entities/IAiEntity.cs
2026-02-10 18:21:30 +01:00

6 lines
No EOL
124 B
C#

namespace WingsEmu.Game.Entities;
public interface IAiEntity : IBattleEntity
{
public bool IsStillAlive { get; set; }
}