mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-15 12:41:15 +00:00
12 lines
161 B
C++
12 lines
161 B
C++
#ifndef RACESTATE_H
|
|
#define RACESTATE_H
|
|
|
|
#include "legostate.h"
|
|
|
|
class RaceState : public LegoState
|
|
{
|
|
public:
|
|
RaceState();
|
|
};
|
|
|
|
#endif // RACESTATE_H
|