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

16 lines
No EOL
318 B
C#

// WingsEmu
//
// Developed by NosWings Team
using WingsEmu.Game.Helpers.Damages;
namespace WingsEmu.Game.Entities;
public interface IMoveableEntity : IEntity
{
public Position Position { get; set; }
public short PositionX { get; }
public short PositionY { get; }
public byte Speed { get; set; }
}