mirror of
https://github.com/sampletext32/ParkanPlayground.git
synced 2025-12-12 01:31:20 +04:00
16 lines
306 B
C#
16 lines
306 B
C#
|
|
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
|
|||
|
|
);
|