mirror of
https://github.com/zoriya/ForecastingVillage.git
synced 2026-06-02 02:35:05 +00:00
adding the ui display component and adding missing files to the Makefile
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user