#ifndef RACE_H #define RACE_H class Race { public: Race(); bool is_open; void race_loop(); void reset(); }; #endif