mirror of
https://github.com/zoriya/ForecastingVillage.git
synced 2026-06-02 02:35:05 +00:00
Adding a movable block of dirt
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
/*
|
||||
** 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;
|
||||
Reference in New Issue
Block a user