2019-12-09 19:08:05 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#ifdef GAMES_CPP
|
|
|
|
#define g_extr
|
|
|
|
#else
|
|
|
|
#define g_extr extern
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <Arduino.h>
|
2020-02-29 22:10:53 +01:00
|
|
|
#include "strategy_roles/game.h"
|
2020-11-04 17:46:14 +01:00
|
|
|
#include "strategy_roles/striker.h"
|
2021-06-22 18:18:00 +02:00
|
|
|
#include "strategy_roles/striker_roller.h"
|
2021-05-13 08:38:20 +02:00
|
|
|
#include "strategy_roles/precision_shooter.h"
|
2021-05-14 10:30:35 +02:00
|
|
|
#include "strategy_roles/pass_and_shoot.h"
|
2021-06-23 17:58:49 +02:00
|
|
|
#include "strategy_roles/spot_finder.h"
|
2021-05-14 01:57:49 +02:00
|
|
|
// #include "strategy_roles/keeper.h"
|
2019-12-09 19:08:05 +01:00
|
|
|
|
|
|
|
void initGames();
|
|
|
|
|
2020-11-04 17:46:14 +01:00
|
|
|
g_extr Game* striker;
|
2021-06-22 18:18:00 +02:00
|
|
|
g_extr Game* striker_roller;
|
2021-05-13 08:38:20 +02:00
|
|
|
g_extr Game* precision_shooter;
|
2021-05-14 10:30:35 +02:00
|
|
|
g_extr Game* pass_and_shoot;
|
2021-06-22 20:53:11 +02:00
|
|
|
// g_extr Game* keeper;
|
|
|
|
|
2021-06-23 17:58:49 +02:00
|
|
|
g_extr Game* tc1;
|
|
|
|
g_extr Game* tc2;
|