Adding a teams system

This commit is contained in:
AnonymusRaccoon
2020-03-03 17:32:10 +01:00
parent 1bbd73c6c6
commit bbbf859973
9 changed files with 160 additions and 9 deletions
+21
View File
@@ -0,0 +1,21 @@
//
// Created by anonymus-raccoon on 3/3/20.
//
#ifndef _TEAMS_COMPONENT_C_
#define _TEAMS_COMPONENT_H_
#include "component.h"
struct teams_component
{
gc_component base;
float next_teams;
float delay;
char **prefabs;
int prefab_count;
};
const struct teams_component teams_component;
#endif //_TEAMS_COMPONENT_C_