diff options
Diffstat (limited to 'board/quack')
-rw-r--r-- | board/quack/board.c | 12 | ||||
-rw-r--r-- | board/quack/board.h | 3 |
2 files changed, 12 insertions, 3 deletions
diff --git a/board/quack/board.c b/board/quack/board.c new file mode 100644 index 0000000..893e366 --- /dev/null +++ b/board/quack/board.c @@ -0,0 +1,12 @@ +#include "sound.h" + +#include "../board.c" + +void board_on_down(void) +{ + sound_play(quack_board_down_wav); +} + +void board_on_up(void) +{ +}
\ No newline at end of file diff --git a/board/quack/board.h b/board/quack/board.h deleted file mode 100644 index 64ba4cb..0000000 --- a/board/quack/board.h +++ /dev/null @@ -1,3 +0,0 @@ -#include "./sound.h" -#include "../simple.h" -SIMPLE_BOARD(quack)
\ No newline at end of file |