Fix line endings in main sketch

This commit is contained in:
Mikko Ahlroth 2019-10-23 20:44:30 +03:00
parent 919944f7c9
commit ba521c6988

View file

@ -1,16 +1,16 @@
#include "src/debugger.hpp"
#include "src/game_manager.hpp"
#include "src/randomiser.hpp"
Input* input;
Randomiser* randomiser;
GameManager* game;
void setup() {
initDebug(9600);
input = new Input();
randomiser = new Randomiser(analogRead(0));
game = new GameManager(input, randomiser);
}
void loop() { game->loop(); }
#include "src/debugger.hpp"
#include "src/game_manager.hpp"
#include "src/randomiser.hpp"
Input* input;
Randomiser* randomiser;
GameManager* game;
void setup() {
initDebug(9600);
input = new Input();
randomiser = new Randomiser(analogRead(0));
game = new GameManager(input, randomiser);
}
void loop() { game->loop(); }