skills working somewhat
This commit is contained in:
parent
a8c43ba7e2
commit
8a0e4bb481
22 changed files with 4227 additions and 161 deletions
23
tools/MemoryViewer/MemoryViewerSettings.cs
Normal file
23
tools/MemoryViewer/MemoryViewerSettings.cs
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
|
||||
|
||||
namespace MemoryViewer
|
||||
{
|
||||
using GameHelper.Plugin;
|
||||
|
||||
|
||||
public class MemoryViewerSettings : IPSettings
|
||||
{
|
||||
|
||||
|
||||
public bool Enable { get; set; } = true;
|
||||
|
||||
|
||||
public int HexViewBytes { get; set; } = 256;
|
||||
|
||||
|
||||
public bool AutoRefresh { get; set; } = true;
|
||||
|
||||
|
||||
public int RefreshIntervalMs { get; set; } = 1000;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue