MiaoUI/example/STM32F103C8T6/MultMenu/application/DinoGame.h

14 lines
219 B
C
Raw Normal View History

2023-07-13 15:32:01 +00:00
#ifndef _DinoGame_H
#define _DinoGame_H
2024-07-10 12:15:39 +00:00
#include "stm32f10x.h"
2023-07-13 15:32:01 +00:00
#include <stdio.h>
#include <string.h>
#include <stdbool.h>
#include <stdlib.h> // rand
2024-02-06 09:38:48 +00:00
#include "application.h"
2023-07-13 15:32:01 +00:00
void DinoGame_Run(xpMenu Menu);
2023-07-13 15:32:01 +00:00
2024-04-06 18:01:42 +00:00
#endif