switch-pico/switch_legacy_protocol.cpp
Joey Yakimowich-Payne 1a6859855e Add protocol facade
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
2026-08-11 12:23:07 +09:00

23 lines
467 B
C++

#include "switch_protocol.h"
#include "switch_pro_driver.h"
void switch_protocol_init() {
switch_pro_init();
}
void switch_protocol_set_input(const SwitchInputState& state) {
switch_pro_set_input(state);
}
void switch_protocol_task() {
switch_pro_task();
}
bool switch_protocol_is_ready() {
return switch_pro_is_ready();
}
void switch_protocol_set_rumble_callback(SwitchRumbleCallback callback) {
switch_pro_set_rumble_callback(callback);
}