A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
ItemId.hh
1#pragma once
2
3namespace Item {
4
5enum class ItemId {
6 TRIPLE_MUSHROOM = 0x5,
7 NONE = 0x14,
8};
9
10} // namespace Item
Pertains to item handling.