blah/src/internal/input_backend.h

17 lines
234 B
C
Raw Normal View History

2020-12-24 08:16:09 +08:00
#pragma once
#include <blah/input.h>
2020-12-24 08:16:09 +08:00
namespace Blah
{
namespace InputBackend
{
// Initializes the Input State
2020-12-24 08:16:09 +08:00
void init();
// Steps the input state
void update_state();
2020-12-24 08:16:09 +08:00
// Updates bindings
void update_bindings();
2020-12-24 08:16:09 +08:00
}
}