NSMBW-Decomp
A decompilation of New Super Mario Bros. Wii
Loading...
Searching...
No Matches
s_GlobalData.hpp
1#pragma once
2
3/**
4 * @brief A templated global data holder class.
5 * @tparam T The class that contains the global data struct.
6 * @unofficial
7 */
8template <typename T>
10public:
11 static T::GlobalData_t mData; ///< @unofficial
12};
A templated global data holder class.
static T::GlobalData_t mData