mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-13 19:51:16 +00:00
13 lines
176 B
C++
13 lines
176 B
C++
#ifndef SKATEBOARD_H
|
|
#define SKATEBOARD_H
|
|
|
|
#include "islepathactor.h"
|
|
|
|
class SkateBoard : public IslePathActor
|
|
{
|
|
public:
|
|
SkateBoard();
|
|
};
|
|
|
|
#endif // SKATEBOARD_H
|