mirror of
https://github.com/zoriya/ForecastingVillage.git
synced 2026-05-13 19:42:57 +00:00
22 lines
332 B
C
22 lines
332 B
C
/*
|
|
** EPITECH PROJECT, 2019
|
|
** Gamacon
|
|
** File description:
|
|
** keyboard_component
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "component.h"
|
|
#include <stdbool.h>
|
|
|
|
struct keyboard_controller
|
|
{
|
|
gc_component base;
|
|
int left_key;
|
|
int right_key;
|
|
int up_key;
|
|
int down_key;
|
|
};
|
|
|
|
extern const struct keyboard_controller keyboard_controller; |