mirror of
https://github.com/zoriya/Twac.git
synced 2026-05-16 04:20:38 +00:00
19 lines
269 B
C
19 lines
269 B
C
/*
|
|
** EPITECH PROJECT, 2019
|
|
** Gamacon
|
|
** File description:
|
|
** gravity_component
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "component.h"
|
|
|
|
struct live_component
|
|
{
|
|
gc_component base;
|
|
int live;
|
|
gc_vector2 spawn_position;
|
|
};
|
|
|
|
extern const struct live_component live_component; |