mirror of
https://github.com/zoriya/Twac.git
synced 2026-06-10 04:59:41 +00:00
19 lines
271 B
C
19 lines
271 B
C
/*
|
|
** EPITECH PROJECT, 2019
|
|
** Gamacon
|
|
** File description:
|
|
** gravity_component
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "component.h"
|
|
|
|
struct timer_component
|
|
{
|
|
gc_component base;
|
|
float time_left;
|
|
int default_value;
|
|
};
|
|
|
|
extern const struct timer_component timer_component; |