mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-13 20:31:21 +00:00
13 lines
272 B
C++
13 lines
272 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(u32) const = 0;
|
|
};
|
|
|
|
} // namespace DataSpec
|