Sign in
pigweed
/
third_party
/
github
/
32blit
/
32blit-sdk
/
refs/heads/upstream/master
/
.
/
32blit-pico
/
input.hpp
blob: 5afbad12a4b924cce220d4e9f5d7dd1e511fa726 [
file
] [
log
] [
blame
] [
edit
]
#pragma
once
#include
<cstdint>
#include
"types/vec2.hpp"
struct
InputDriver
{
void
(*
init
)();
void
(*
update
)(
uint32_t
&,
blit
::
Vec2
&);
};
void
init_input
();
void
update_input
();