13 lines
196 B
C
13 lines
196 B
C
|
|
#ifndef _DinoGame_H
|
||
|
|
#define _DinoGame_H
|
||
|
|
|
||
|
|
#include <stdio.h>
|
||
|
|
#include <string.h>
|
||
|
|
#include <stdbool.h>
|
||
|
|
#include <stdlib.h> // rand
|
||
|
|
#include "application.h"
|
||
|
|
|
||
|
|
void DinoGame_Run(xpItem item);
|
||
|
|
|
||
|
|
#endif
|