A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
Decomp.hh
1#pragma once
2
3#include <Common.hh>
4
5namespace EGG::Decomp {
6
7[[nodiscard]] s32 GetExpandSize(const u8 *src);
8s32 DecodeSZS(const u8 *src, u8 *dst);
9
10} // namespace EGG::Decomp
This header houses common data types such as our integral types and enums.