adding the ui display component and adding missing files to the Makefile

This commit is contained in:
Clément Le Bihan
2020-04-02 14:51:08 +02:00
parent 6e2097c3e1
commit 9112a025ff
4 changed files with 82 additions and 2 deletions
+23
View File
@@ -0,0 +1,23 @@
/*
** EPITECH PROJECT, 2020
** my_rpg
** File description:
** ui display component
*/
#ifndef MY_RPG_UI_DISPLAY_COMPONENT_H
#define MY_RPG_UI_DISPLAY_COMPONENT_H
#include <stdbool.h>
#include "component.h"
struct ui_display_component
{
gc_component base;
bool display_health;
bool display_xp;
};
extern const struct ui_display_component ui_display_component;
#endif //MY_RPG_UI_DISPLAY_COMPONENT_H