mirror of
https://github.com/zoriya/Gamacon.git
synced 2026-06-07 13:34:40 +00:00
Making systems a linked list; Adding the size in the position component
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
** EPITECH PROJECT, 2019
|
||||
** MUL_my_runner_2019
|
||||
** File description:
|
||||
** list
|
||||
*/
|
||||
|
||||
typedef struct gc_list gc_list;
|
||||
|
||||
#pragma once
|
||||
|
||||
struct gc_list
|
||||
{
|
||||
void *data;
|
||||
gc_list *next;
|
||||
};
|
||||
Reference in New Issue
Block a user