Skip to content

Commit

Permalink
Test adding unlimiter chunk
Browse files Browse the repository at this point in the history
  • Loading branch information
BigBang1112 committed Nov 6, 2024
1 parent 25e6fd7 commit 3ace366
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Src/GBX.NET/Engines/Game/CGameCtnChallenge.chunkl
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,8 @@ CGameCtnChallenge 0x03043000 // A map.
version
byte<PaletteColor> Palette

0x3F001003 (skippable)

archive BotPath
int Clan
list<vec3> Path
Expand Down
11 changes: 11 additions & 0 deletions Src/GBX.NET/Engines/Game/CGameCtnChallenge.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1994,4 +1994,15 @@ public override void Write(CGameCtnChallenge n, GbxWriter w)
}
}
}

public partial class Chunk3F001003 : IVersionable
{
public int Version { get; set; }

public override void Read(CGameCtnChallenge n, GbxReader r)
{
Version = r.ReadByte();
var flags = r.ReadInt16();
}
}
}

0 comments on commit 3ace366

Please sign in to comment.