CHUNITHM-Patch-Finder/Models/BemaniPatcherNumberPatch.cs

14 lines
353 B
C#
Raw Permalink Normal View History

2024-04-11 08:44:23 +00:00
namespace CHUNITHM_Patch_Finder.Models;
public class BemaniPatcherNumberPatch : BemaniPatcherPatch
{
public override string Type => "number";
public required int Offset { get; set; }
public required int Size { get; set; }
public required int Min { get; set; }
public required int Max { get; set; }
}