blob: 05e3e481cfd50fc266ff85485eb0b79439f5ea3c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "game/worldobject.h"
#include "vehicle.h"
#include <string>
class RailLoco : public Vehicle {
public:
using Vehicle::Vehicle;
void tick(TickDuration elapsed) override;
};
class Brush47 : public RailLoco {
public:
Brush47(LinkPtr p);
};
|