Initial commit.

This commit is contained in:
2019-08-02 23:48:36 +02:00
commit 128d76cebc
13 changed files with 313 additions and 0 deletions

19
src/main.cpp Normal file
View File

@ -0,0 +1,19 @@
#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() {
}