17 lines
153 B
C
17 lines
153 B
C
#ifndef GAME_H
|
|
#define GAME_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "cmsis_os.h"
|
|
|
|
void Game_Init(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|