SPQR-Team-2019-REVAMPED/include/strategy_roles/games.h

35 lines
821 B
C
Raw Normal View History

#pragma once
#ifdef GAMES_CPP
#define g_extr
#else
#define g_extr extern
#endif
#include <Arduino.h>
#include "strategy_roles/game.h"
#include "strategy_roles/striker.h"
#include "strategy_roles/striker_roller.h"
2021-05-13 08:38:20 +02:00
#include "strategy_roles/precision_shooter.h"
#include "strategy_roles/pass_and_shoot.h"
2021-06-23 17:58:49 +02:00
#include "strategy_roles/spot_finder.h"
#include "strategy_roles/the_spinner.h"
2021-06-24 20:45:47 +02:00
#include "strategy_roles/round_robin.h"
#include "strategy_roles/corner_kick_2.h"
#include "strategy_roles/corner_kick_1.h"
2021-05-14 01:57:49 +02:00
// #include "strategy_roles/keeper.h"
void initGames();
g_extr Game* striker;
g_extr Game* striker_roller;
2021-05-13 08:38:20 +02:00
g_extr Game* precision_shooter;
g_extr Game* pass_and_shoot;
// g_extr Game* keeper;
2021-06-23 17:58:49 +02:00
g_extr Game* tc1;
2021-06-24 20:45:47 +02:00
g_extr Game* tc2;
g_extr Game* st_tc1;
g_extr Game* st_tc3;
g_extr Game* tc3_1;
g_extr Game* tc3_2;