This repository has been archived on 2024-06-16. You can view files and clone it, but cannot push or open issues or pull requests.
nopeustesti/nopeustesti.ino

17 lines
346 B
Arduino
Raw Normal View History

2019-10-16 21:11:52 +00:00
#include "src/debugger.hpp"
2019-10-17 15:51:01 +00:00
#include "src/game_manager.hpp"
2019-10-16 21:11:52 +00:00
#include "src/randomiser.hpp"
Input* input;
2019-10-16 21:11:52 +00:00
Randomiser* randomiser;
2019-10-17 15:51:01 +00:00
GameManager* game;
2019-10-16 21:11:52 +00:00
void setup() {
initDebug(9600);
input = new Input();
2019-10-16 21:11:52 +00:00
randomiser = new Randomiser(analogRead(0));
game = new GameManager(input, randomiser);
2019-10-16 21:11:52 +00:00
}
2019-10-17 15:51:01 +00:00
void loop() { game->loop(); }