Files
Twac/include/components/timer_component.h
AnonymusRaccoon dbd49cfc36 Adding a timer
2020-01-10 18:56:25 +01:00

18 lines
248 B
C

/*
** 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;