blah/src/internal/input_backend.h
2021-05-19 11:21:08 -07:00

17 lines
234 B
C++

#pragma once
#include <blah/input.h>
namespace Blah
{
namespace InputBackend
{
// Initializes the Input State
void init();
// Steps the input state
void update_state();
// Updates bindings
void update_bindings();
}
}