Adding a movable block of dirt

This commit is contained in:
Anonymus Raccoon
2020-03-30 15:23:03 +02:00
parent e0fd5ce7dd
commit 07a8434be3
17 changed files with 417 additions and 18 deletions
@@ -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;