16 lines
334 B
C++
16 lines
334 B
C++
#ifndef P001_STEP_2_H
|
|
#define P001_STEP_2_H
|
|
|
|
#include "../drivers/bottom_half.h"
|
|
#include "../drivers/wires.h"
|
|
#include "../drivers/game_timer.h"
|
|
#include "../drivers/leds.h"
|
|
#include "../drivers/speaker.h"
|
|
#include "../helper.h"
|
|
#include <iostream>
|
|
#include <random>
|
|
#include <map>
|
|
|
|
void p001_step2(void);
|
|
|
|
#endif /* P001_STEP_2_H */ |