removing multiple mentions of files in Cmake

This commit is contained in:
Clément Le Bihan
2020-04-01 12:50:45 +02:00
7 changed files with 122 additions and 15 deletions
+25
View File
@@ -0,0 +1,25 @@
/*
** EPITECH PROJECT, 2020
** my_rpg
** File description:
** dialog_holder.h
*/
#ifndef MY_RPG_DIALOG_HOLDER_H
#define MY_RPG_DIALOG_HOLDER_H
#include "component.h"
struct dialog_holder {
gc_component base;
char **text;
bool single_usage;
bool has_seen;
int current_line;
char *current_text;
};
const struct dialog_holder dialog_holder;
#endif //MY_RPG_DIALOG_HOLDER_H