20 lines
299 B
C++
20 lines
299 B
C++
|
#include <Arduino.h>
|
||
|
#include "config.h"
|
||
|
#include "buttons.h"
|
||
|
#include "controller.h"
|
||
|
#include "player.h"
|
||
|
|
||
|
Buttons* buttons;
|
||
|
Controller* controller;
|
||
|
Player* player;
|
||
|
|
||
|
void setup() {
|
||
|
player = new Player();
|
||
|
controller = new Controller(player);
|
||
|
buttons = new Buttons(controller);
|
||
|
}
|
||
|
|
||
|
void loop() {
|
||
|
|
||
|
}
|