// Copyright 2024 The DMBMX2Tools Authors // SPDX-License-Identifier: MIT #include namespace dmtools::dmbmx { /// Z-Axis IFF chunk header. struct ZiffChunkHeader { FourCCT ckId; u32 ckSz; /// returns true if the chunk id matches the specific FourCC template constexpr bool Is() { return ckId == FourCC(); } }; }