diff --git a/src/Pure3D/Chunks/CollisionAABB.cs b/src/Pure3D/Chunks/CollisionAABB.cs new file mode 100644 index 0000000..0051b19 --- /dev/null +++ b/src/Pure3D/Chunks/CollisionAABB.cs @@ -0,0 +1,24 @@ +using System.IO; + +namespace Pure3D.Chunks +{ + [ChunkType(117506054)] + public class CollisionAABB : Chunk + { + + public CollisionAABB(File file, uint type) : base(file, type) + { + } + + public override void ReadHeader(Stream stream, long length) + { + BinaryReader reader = new(stream); + reader.ReadUInt32(); // For some reason, there are 4 bytes here that do nothing + } + + public override string ToString() + { + return "Collision Axis-Aligned Bounding Box"; + } + } +} \ No newline at end of file