mirror of
https://github.com/zoriya/ForecastingVillage.git
synced 2026-05-24 23:35:24 +00:00
22 lines
303 B
C
22 lines
303 B
C
/*
|
|
** EPITECH PROJECT, 2020
|
|
** my_rpg
|
|
** File description:
|
|
** combat_holder.h
|
|
*/
|
|
|
|
|
|
#ifndef MY_RPG_COMBAT_HOLDER_H
|
|
#define MY_RPG_COMBAT_HOLDER_H
|
|
|
|
#include "component.h"
|
|
|
|
struct combat_holder
|
|
{
|
|
gc_component base;
|
|
};
|
|
|
|
extern const struct combat_holder combat_holder;
|
|
|
|
#endif //MY_RPG_COMBAT_HOLDER_H
|