mirror of
https://github.com/k1tbyte/Wand-Enhancer.git
synced 2026-08-29 03:01:21 +00:00
26 lines
515 B
C#
26 lines
515 B
C#
using System.Collections.Generic;
|
|
|
|
namespace WeModPatcher.Models
|
|
{
|
|
|
|
public enum EPatchType
|
|
{
|
|
ActivatePro = 1,
|
|
DisableUpdates = 2,
|
|
DisableTelemetry = 4
|
|
}
|
|
|
|
public enum EPatchProcessMethod
|
|
{
|
|
None = 0,
|
|
Runtime = 1,
|
|
Static = 2
|
|
}
|
|
|
|
public sealed class PatchConfig
|
|
{
|
|
public HashSet<EPatchType> PatchTypes { get; set; }
|
|
public EPatchProcessMethod PatchMethod { get; set; }
|
|
public string Path { get; set; }
|
|
}
|
|
} |