mirror of
https://github.com/J-D-K/JKSV.git
synced 2026-07-14 07:01:05 -05:00
12 lines
259 B
C++
12 lines
259 B
C++
#pragma once
|
|
#include <switch.h>
|
|
|
|
namespace Input
|
|
{
|
|
void Initialize(void);
|
|
void Update(void);
|
|
bool ButtonPressed(HidNpadButton Button);
|
|
bool ButtonHeld(HidNpadButton Button);
|
|
bool ButtonReleased(HidNpadButton Button);
|
|
} // namespace Input
|