mirror of
https://github.com/zoriya/ForecastingVillage.git
synced 2026-05-12 19:07:58 +00:00
22 lines
289 B
C
22 lines
289 B
C
/*
|
|
** EPITECH PROJECT, 2020
|
|
** my_rpg
|
|
** File description:
|
|
** map_movement.h
|
|
*/
|
|
|
|
|
|
#ifndef MY_RPG_MAP_MOVEMENT_H
|
|
#define MY_RPG_MAP_MOVEMENT_H
|
|
|
|
#include "component.h"
|
|
|
|
struct map_movement
|
|
{
|
|
gc_component base;
|
|
};
|
|
|
|
const struct map_movement map_movement;
|
|
|
|
#endif //MY_RPG_MAP_MOVEMENT_H
|