Skip to content

Commit

Permalink
Update VFOG ID name
Browse files Browse the repository at this point in the history
  • Loading branch information
Marlamin committed Jul 22, 2024
1 parent 7f88d19 commit 5225c02
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Warcraft.NET/Files/WDT/Chunks/TWW/VFEX.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class VFEX : IIFFChunk, IBinarySerializable
/// <summary>
/// Reference to the ID in the VFOG entry this VFEX belongs to.
/// </summary>
public uint VFOG_ID { get; set; }
public uint VfogId { get; set; }

public uint Unknown3 { get; set; }
public uint Unknown4 { get; set; }
Expand Down Expand Up @@ -61,7 +61,7 @@ public void LoadBinaryData(byte[] inData)
Unknown1[i] = br.ReadSingle();
}

VFOG_ID = br.ReadUInt32();
VfogId = br.ReadUInt32();
Unknown3 = br.ReadUInt32();
Unknown4 = br.ReadUInt32();
Unknown5 = br.ReadUInt32();
Expand Down Expand Up @@ -94,7 +94,7 @@ public byte[] Serialize(long offset = 0)
{
bw.Write(Unknown1[i]);
}
bw.Write(VFOG_ID);
bw.Write(VfogId);
bw.Write(Unknown3);
bw.Write(Unknown4);
bw.Write(Unknown5);
Expand Down

0 comments on commit 5225c02

Please sign in to comment.