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"
|
2022-05-16 20:34:35 +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;
|
2022-06-09 10:04:02 +02:00
|
|
|
g_extr Game* keeper;
|