mirror of
https://github.com/NoelFB/blah.git
synced 2025-04-11 01:26:05 +08:00
17 lines
234 B
C++
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();
|
|
}
|
|
} |