blob: 833b661ce55abdc77bce813a34697ea76bc27e89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "game/network/link.h"
#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:
explicit Brush47(const LinkPtr & p);
};
|