#ifndef TWN_INPUT_H
#define TWN_INPUT_H

#include "twn_api.h"
#include "twn_types.h"

#include <stdbool.h>
#include <stdint.h>
#include <stddef.h>

TWN_API void input_action(const char *name, const char *control);
TWN_API bool input_action_pressed(const char *name);
TWN_API bool input_action_just_pressed(const char *name);
TWN_API bool input_action_just_released(const char *name);
TWN_API Vec2 input_action_position(const char *name);

#endif