mirror of
https://github.com/zoriya/My3D.git
synced 2026-05-23 14:57:19 +00:00
27 lines
441 B
C
27 lines
441 B
C
//
|
|
// Created by anonymus-raccoon on 3/3/20.
|
|
//
|
|
|
|
#ifndef _TEAMS_COMPONENT_C_
|
|
#define _TEAMS_COMPONENT_H_
|
|
|
|
#include "component.h"
|
|
|
|
typedef enum display_type
|
|
{
|
|
HAPPINESS_DISPLAY,
|
|
STUPIDITY_DISPLAY,
|
|
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_
|