[go: up one dir, main page]

Menu

[r9]: / include / race.h  Maximize  Restore  History

Download this file

15 lines (11 with data), 125 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
#ifndef RACE_H
#define RACE_H
class Race
{
public:
Race();
bool is_open;
void race_loop();
void reset();
};
#endif