The map can now be edited

This commit is contained in:
Anonymus Raccoon
2020-04-14 12:52:05 +02:00
parent 0f82511dcd
commit c4f5671e6f
22 changed files with 585 additions and 2 deletions
+24
View File
@@ -0,0 +1,24 @@
//
// Created by anonymus-raccoon on 3/3/20.
//
#ifndef _TEAMS_COMPONENT_C_
#define _TEAMS_COMPONENT_H_
#include "component.h"
typedef enum display_type
{
SELECT_TILE_DISPLAY
} display_type_enum;
struct game_display
{
gc_component base;
display_type_enum type;
};
const struct game_display game_display;
const struct gc_system game_display_system;
#endif //_TEAMS_COMPONENT_C_