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