// // Monster.cs // // Copyright (c) František Boháček. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using NosCore.Packets.Enumerations; using NosCore.Shared.Enumerations; using NosSmooth.Game.Data.Info; namespace NosSmooth.Game.Data.Entities; /// /// Represents nostale monster entity. /// /// /// /// /// /// /// /// /// /// /// /// public record Monster ( long Id, string? Name, Position? Position, byte? Speed, ushort? Level, byte? Direction, Health? Hp, Health? Mp, FactionType? Faction, short Size, long MonsterVNum ) : ILivingEntity { /// public VisualType Type => VisualType.Monster; }