mirror of
https://github.com/zoriya/My3D.git
synced 2026-05-24 23:26:09 +00:00
20 lines
287 B
C
20 lines
287 B
C
//
|
|
// Created by anonymus-raccoon on 3/3/20.
|
|
//
|
|
|
|
#ifndef _TEAMS_COMPONENT_C_
|
|
#define _TEAMS_COMPONENT_H_
|
|
|
|
#include "component.h"
|
|
|
|
struct game_manager
|
|
{
|
|
gc_component base;
|
|
int happiness;
|
|
int stupidity;
|
|
};
|
|
|
|
const struct game_manager game_manager;
|
|
|
|
#endif //_TEAMS_COMPONENT_C_
|