Skip to content

Commit

Permalink
Smol tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
BigBang1112 committed Jan 7, 2024
1 parent 16a309d commit 15d09cb
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions Src/GBX.NET/Engines/Plug/CPlugVehicleMaterial.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,13 @@ internal CPlugVehicleMaterial()
[Chunk(0x090F1004)]
public class Chunk090F1004 : Chunk<CPlugVehicleMaterial>
{
public string? U01;
public float U02;
public float U03;
public CPlugBitmap? U01;
public Vec2 U02;

public override void ReadWrite(CPlugVehicleMaterial n, GameBoxReaderWriter rw)
{
rw.Id(ref U01); // Possibly Id, so far only ever seen 0xFFFFFFFF
rw.Single(ref U02);
rw.Single(ref U03);
rw.NodeRef<CPlugBitmap>(ref U01);
rw.Vec2(ref U02);
}
}

Expand Down

0 comments on commit 15d09cb

Please sign in to comment.