mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-13 03:31:15 +00:00
12 lines
163 B
C++
12 lines
163 B
C++
#ifndef HELICOPTER_H
|
|
#define HELICOPTER_H
|
|
|
|
#include "islepathactor.h"
|
|
|
|
class Helicopter : public IslePathActor
|
|
{
|
|
public:
|
|
Helicopter();
|
|
};
|
|
|
|
#endif // HELICOPTER_H
|