mirror of
https://github.com/sampletext32/ParkanPlayground.git
synced 2025-09-13 10:20:28 +03:00
Allow to view cp .dat in UI
This commit is contained in:
12
CpDatLib/CpDatEntry.cs
Normal file
12
CpDatLib/CpDatEntry.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace CpDatLib;
|
||||
|
||||
public record CpDatEntry(
|
||||
string ArchiveFile,
|
||||
string ArchiveEntryName,
|
||||
int Magic1,
|
||||
int Magic2,
|
||||
string Description,
|
||||
int Magic3,
|
||||
int ChildCount, // игра не хранит это число в объекте, но оно есть в файле
|
||||
List<CpDatEntry> Children
|
||||
);
|
Reference in New Issue
Block a user