mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-14 04:01:15 +00:00
13 lines
139 B
C++
13 lines
139 B
C++
#ifndef CARRACE_H
|
|
#define CARRACE_H
|
|
|
|
#include "legorace.h"
|
|
|
|
class CarRace : public LegoRace
|
|
{
|
|
public:
|
|
CarRace();
|
|
};
|
|
|
|
#endif // CARRACE_H
|