mirror of
https://github.com/zoriya/My3D.git
synced 2026-05-31 17:53:19 +00:00
Adding a teams system
This commit is contained in:
@@ -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_
|
||||
Reference in New Issue
Block a user