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

13 lines
No EOL
338 B
C#

using System;
using WingsEmu.Game.Helpers.Damages;
namespace WingsEmu.Game.Characters;
public class LastWalk
{
public DateTime WalkTimeStart { get; set; }
public Position StartPosition { get; set; }
public DateTime WalkTimeEnd { get; set; }
public Position EndPosition { get; set; }
public int? MapId { get; set; }
}