22 lines
413 B
C
22 lines
413 B
C
#ifndef STEP_2_H
|
|
#define STEP_2_H
|
|
|
|
#include <random>
|
|
#include "../drivers/tft.h"
|
|
#include "../drivers/speaker.h"
|
|
#include "../drivers/bottom_half.h"
|
|
#include "../drivers/game_timer.h"
|
|
#include "../drivers/wires.h"
|
|
#include "../drivers/char_lcd.h"
|
|
|
|
// TODO:
|
|
// - [ ] set up real game loop
|
|
// - [ ] stop music
|
|
// - [ ] set up strike on falure
|
|
// - [ ] set up module timer
|
|
|
|
|
|
|
|
void step2(void);
|
|
|
|
#endif /* STEP_2_H */ |