CHUNITHM-Patch-Finder/Pattern.cs

14 lines
259 B
C#
Raw Normal View History

2024-04-11 06:30:43 +00:00
namespace CHUNITHM_Patch_Finder;
public record Pattern
{
public required string Name;
public string? Signature = null;
public required PatternPatch[] Patches;
public string? Tooltip = null;
public string? Danger = null;
}