mirror of https://github.com/AxioDL/metaforce.git
13 lines
277 B
C++
13 lines
277 B
C++
|
#pragma once
|
||
|
|
||
|
#include "Runtime/Tweaks/ITweak.hpp"
|
||
|
#include "Runtime/Input/ControlMapper.hpp"
|
||
|
|
||
|
namespace metaforce::Tweaks {
|
||
|
|
||
|
struct ITweakPlayerControl : ITweak {
|
||
|
[[nodiscard]] virtual ControlMapper::EFunctionList GetMapping(atUint32) const = 0;
|
||
|
};
|
||
|
|
||
|
} // namespace DataSpec
|