Files
2020-01-09 17:19:28 +01:00

20 lines
277 B
C

/*
** EPITECH PROJECT, 2019
** MUL_my_runner_2019
** File description:
** walk_action
*/
#pragma once
#include "component.h"
#include <stdbool.h>
struct walk_action
{
gc_component base;
int acceleration;
int idle;
};
extern const struct walk_action walk_action;