mirror of
https://github.com/zoriya/Twac.git
synced 2025-12-06 06:36:09 +00:00
18 lines
248 B
C
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; |