mirror of
https://github.com/zoriya/Twac.git
synced 2026-06-11 13:28:36 +00:00
18 lines
256 B
C
18 lines
256 B
C
/*
|
|
** EPITECH PROJECT, 2019
|
|
** Gamacon
|
|
** File description:
|
|
** gravity_component
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "component.h"
|
|
|
|
struct gravity_component
|
|
{
|
|
gc_component base;
|
|
int gravity_speed;
|
|
};
|
|
|
|
extern const struct gravity_component gravity_component; |