mirror of https://github.com/AxioDL/metaforce.git
10 lines
304 B
C++
10 lines
304 B
C++
#include "Runtime/MP1/Tweaks/CTweakPlayerControl.hpp"
|
|
#include "Runtime/Streams/IOStreams.hpp"
|
|
|
|
namespace metaforce::MP1 {
|
|
CTweakPlayerControl::CTweakPlayerControl(CInputStream& in) {
|
|
for (u32 i = 0; i < m_mappings.size(); ++i) {
|
|
m_mappings[i] = ControlMapper::EFunctionList(in.ReadLong());
|
|
}
|
|
}
|
|
} |