// // PlayerManagerOptions.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 NosSmooth.LocalBinding.Structs; namespace NosSmooth.LocalBinding.Options; /// /// Options for . /// public class PlayerManagerOptions { /// /// Gets or sets the pattern to find the character object at. /// public string PlayerManagerPattern { get; set; } = "33 C9 8B 55 FC A1 ?? ?? ?? ?? E8 ?? ?? ?? ??"; /// /// Gets or sets the offsets to find the player manager at from the static address. /// public int[] PlayerManagerOffsets { get; set; } = { 6, 0 }; }