mirror of
https://github.com/zoriya/My3D.git
synced 2025-12-06 06:26:14 +00:00
18 lines
414 B
C
18 lines
414 B
C
//
|
|
// Created by anonymus-raccoon on 3/9/20.
|
|
//
|
|
|
|
#ifndef _TEAMS_H_
|
|
#define _TEAMS_H_
|
|
|
|
#include <stdbool.h>
|
|
#include "engine.h"
|
|
|
|
bool absent_check(gc_engine *engine, int entity_id, gc_vector2 _);
|
|
bool absent_cross(gc_engine *engine, int entity_id, gc_vector2 _);
|
|
|
|
bool forgot_lmfao(gc_engine *engine, int entity_id, gc_vector2 _);
|
|
bool forgot_ok(gc_engine *engine, int entity_id, gc_vector2 _);
|
|
|
|
#endif //_TEAMS_H_
|