mirror of
https://github.com/zoriya/Twac.git
synced 2026-05-28 08:57:34 +00:00
20 lines
277 B
C
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; |