1
mirror of https://github.com/sampletext32/ParkanPlayground.git synced 2025-12-12 01:31:20 +04:00

parse binary varset file

This commit is contained in:
bird_egop
2025-11-22 06:53:07 +03:00
parent a774db37a6
commit 2a78bbebda
5 changed files with 78 additions and 4 deletions

View File

@@ -0,0 +1,15 @@
using Common;
namespace VarsetLib;
public record BinaryVarsetItem(
int Magic1, // length of something
IntFloatValue Magic2,
IntFloatValue Magic3,
string Name,
string String2,
IntFloatValue Magic4,
IntFloatValue Magic5,
IntFloatValue Magic6,
IntFloatValue Magic7
);