Adding a live/respawn system

This commit is contained in:
AnonymusRaccoon
2020-01-07 17:08:59 +01:00
parent 3a611e2f76
commit 1771349f34
9 changed files with 182 additions and 1 deletions
+17
View File
@@ -0,0 +1,17 @@
/*
** EPITECH PROJECT, 2019
** Gamacon
** File description:
** gravity_component
*/
#pragma once
#include "component.h"
struct kill_component
{
gc_component base;
};
extern const struct kill_component kill_component;