You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
330 B
24 lines
330 B
//
|
|
// Created by MightyPork on 2017/06/08.
|
|
//
|
|
|
|
#ifndef FIRMWARE_GAME_H
|
|
#define FIRMWARE_GAME_H
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
/**
|
|
* Game entry point
|
|
*/
|
|
void game_main(void);
|
|
|
|
/**
|
|
* Button press handler
|
|
*
|
|
* @param button
|
|
* @param press
|
|
*/
|
|
void onGameButton(uint8_t button, bool press);
|
|
|
|
#endif //FIRMWARE_GAME_H
|
|
|