SPQR-Team-2019-REVAMPED/include/game.h

19 lines
393 B
C
Raw Normal View History

2019-12-02 17:25:22 +01:00
#pragma once
#include "data_source.h"
#include "data_source_ball.h"
#include "motor.h"
#include "drivecontroller.h"
#include "sensors.h"
#include "vars.h"
#include "data_source_bno055.h"
class Game{
public:
Game();
void keeper();
void goalie();
2019-12-04 17:25:25 +01:00
void ballBack();
2019-12-02 17:25:22 +01:00
bool role, attackGoal; //1->goalie 0->keeper, 1->yellow 0->blue
//~Game();
};