mirror of
https://github.com/zoriya/Gamacon.git
synced 2026-06-15 08:50:53 +00:00
20 lines
352 B
C
20 lines
352 B
C
/*
|
|
** EPITECH PROJECT, 2019
|
|
** Gamacon
|
|
** File description:
|
|
** parallax_component
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "component.h"
|
|
#include "components/transform_component.h"
|
|
|
|
struct tooltip_component
|
|
{
|
|
gc_component base;
|
|
struct transform_component *parent_transform;
|
|
gc_vector2 padding;
|
|
};
|
|
|
|
extern const struct tooltip_component tooltip_component; |