~ruther/NosSmooth.Local

ref: c0c354f151614939fa28d2d770ff75efc0c1e5c9 NosSmooth.Local/src/Core/NosSmooth.LocalBinding/Options/NtClientOptions.cs -rw-r--r-- 868 bytes
c0c354f1 — Rutherther ci: remove --output from dotnet pack, put output directory to Directory.Build.props 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//
//  NtClientOptions.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;

/// <summary>
/// Options for <see cref="NtClient"/>.
/// </summary>
public class NtClientOptions
{
    /// <summary>
    /// Gets or sets the pattern to find static pet manager list address at.
    /// </summary>
    public string NtClientPattern { get; set; }
        = "FF FF 00 00 00 00 FF FF FF FF ?? ?? ?? ?? 00 ?? 00 00 ?? ?? ?? ?? ?? ?? ?? ?? ?? FF FF FF 00 00 00 00 00 00 00 00 00 00 00";

    /// <summary>
    /// Gets or sets the offsets to find the scene manager at from the static address.
    /// </summary>
    public int[] NtClientOffsets { get; set; }
        = { 10 };
}
Do not follow this link