Adding a timer

This commit is contained in:
AnonymusRaccoon
2020-01-10 18:56:25 +01:00
parent 4b8e120739
commit dbd49cfc36
10 changed files with 144 additions and 7 deletions
+18
View File
@@ -0,0 +1,18 @@
/*
** EPITECH PROJECT, 2019
** Gamacon
** File description:
** gravity_component
*/
#pragma once
#include "component.h"
struct timer_component
{
gc_component base;
float time_left;
};
extern const struct timer_component timer_component;