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

15 lines
No EOL
278 B
C#

// WingsEmu
//
// Developed by NosWings Team
using WingsEmu.Game.Maps;
using WingsEmu.Packets.Enums;
namespace WingsEmu.Game.Entities;
public interface IEntity
{
public VisualType Type { get; }
public int Id { get; }
public IMapInstance MapInstance { get; }
}