mirror of
https://github.com/zoriya/Gamacon.git
synced 2026-06-18 09:30:43 +00:00
20 lines
308 B
C
20 lines
308 B
C
/*
|
|
** EPITECH PROJECT, 2019
|
|
** Gamacon
|
|
** File description:
|
|
** movable_component
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "component.h"
|
|
#include <stdbool.h>
|
|
|
|
struct movable_component
|
|
{
|
|
gc_component base;
|
|
gc_vector2 acceleration;
|
|
gc_vector2 velocity;
|
|
};
|
|
|
|
extern const struct movable_component movable_component; |