NdsForge.NET 1.0.1
Read, validate, edit, compare, and build Nintendo DS and DSi images from .NET
Loading...
Searching...
No Matches
NdsFileChange.cs
1namespace NdsForge;
2
9public sealed record NdsFileChange(
10 int FileId,
11 string? Path,
12 long OriginalLength,
13 long ReplacementLength,
14 bool RequiresRelocation);
15