// // MapNpcObj.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 Reloaded.Memory.Sources; namespace NosSmooth.LocalBinding.Structs; /// /// Npc NosTale object. /// public class MapNpcObj : MapBaseObj { /// /// Initializes a new instance of the class. /// /// The memory. /// The pointer to the object. public MapNpcObj(IMemory memory, nuint mapObjPointer) : base(memory, mapObjPointer) { } }