A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
ResCommon.hh
1#pragma once
2
3// Credit: kiwi515/ogws
4
5namespace Abstract {
6namespace g3d {
7
9 u32 signature;
10 u32 size;
11};
12STATIC_ASSERT(sizeof(ResBlockHeaderData) == 0x8);
13
15 u32 signature;
16 u16 byteOrder;
17 u16 version;
18 u32 fileSize;
19 u16 headerSize;
20 u16 dataBlocks;
21};
22STATIC_ASSERT(sizeof(ResFileHeaderData) == 0x10);
23
24} // namespace g3d
25} // namespace Abstract
An abstraction of components from the nw4r and RVL libraries.
Definition Archive.cc:5