mirror of
https://github.com/zoriya/Gamacon.git
synced 2026-06-19 01:37:49 +00:00
20 lines
318 B
C
20 lines
318 B
C
/*
|
|
** EPITECH PROJECT, 2019
|
|
** MUL_my_runner_2019
|
|
** File description:
|
|
** position_component
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "component.h"
|
|
#include "vector2.h"
|
|
|
|
struct transform_component
|
|
{
|
|
gc_component base;
|
|
gc_vector2 position;
|
|
gc_vector2 size;
|
|
};
|
|
|
|
extern const struct transform_component transform_component; |