From 6aba7c7dd1d6bcc1ddb4a5acb61ec0850c420824 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sat, 8 Oct 2022 15:51:19 +0100 Subject: Add addStright to Network which looks up StraightLink in the network type --- game/network/rail.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'game/network/rail.h') diff --git a/game/network/rail.h b/game/network/rail.h index 758beb6..c1cb579 100644 --- a/game/network/rail.h +++ b/game/network/rail.h @@ -16,10 +16,14 @@ class Vertex; struct Arc; // A piece of rail track +class RailLinkStraight; class RailLink : public virtual Link, public Renderable { public: RailLink() = default; inline ~RailLink() override = 0; + + using StraightLink = RailLinkStraight; + void render(const Shader &) const override; NO_COPY(RailLink); NO_MOVE(RailLink); -- cgit v1.2.3