skills working somewhat
This commit is contained in:
parent
a8c43ba7e2
commit
8a0e4bb481
22 changed files with 4227 additions and 161 deletions
24
tools/PatternTool/PatternToolSettings.cs
Normal file
24
tools/PatternTool/PatternToolSettings.cs
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
|
||||
|
||||
namespace PatternTool
|
||||
{
|
||||
using System;
|
||||
using GameHelper.Plugin;
|
||||
|
||||
|
||||
public class PatternToolSettings : IPSettings
|
||||
{
|
||||
|
||||
|
||||
public string OutputDirectory { get; set; } = "pattern_dumps";
|
||||
|
||||
|
||||
public bool AutoDumpOnAreaChange { get; set; } = false;
|
||||
|
||||
|
||||
public bool EnableCustomPatternScan { get; set; } = true;
|
||||
|
||||
|
||||
public int MaxScanSizeMB { get; set; } = 100;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue