Merging the health component

This commit is contained in:
Anonymus Raccoon
2020-04-01 16:45:37 +02:00
3 changed files with 88 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
/*
** EPITECH PROJECT, 2019
** Gamacon
** File description:
** health_component
*/
#ifndef MY_RPG_HEALTH_COMPONENT_H
#define MY_RPG_HEALTH_COMPONENT_H
#include "component.h"
struct health_component
{
gc_component base;
unsigned int health;
};
extern const struct health_component health_component;
#endif //MY_RPG_HEALTH_COMPONENT_H