diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2024-12-18 19:56:38 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2024-12-18 19:56:40 +0000 |
commit | 5cba33aedccdfa79f1c291bc1da8ff2223d5c70a (patch) | |
tree | 1aeb276c496edbd8beea180d9d032583d27cef49 /ui/builders/join.h | |
parent | Add sanity checking logic to GeoData (diff) | |
download | ilt-5cba33aedccdfa79f1c291bc1da8ff2223d5c70a.tar.bz2 ilt-5cba33aedccdfa79f1c291bc1da8ff2223d5c70a.tar.xz ilt-5cba33aedccdfa79f1c291bc1da8ff2223d5c70a.zip |
Give UI builders an interface that can be programmatically called
Diffstat (limited to 'ui/builders/join.h')
-rw-r--r-- | ui/builders/join.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/builders/join.h b/ui/builders/join.h index dd57895..d92037c 100644 --- a/ui/builders/join.h +++ b/ui/builders/join.h @@ -5,13 +5,14 @@ class Network; class GeoData; class BuilderJoin : public EditNetwork::Builder { +private: std::string hint() const override; void click(Network * network, const GeoData * geoData, const SDL_MouseButtonEvent & e, const Ray<GlobalPosition3D> & ray) override; void move(Network * network, const GeoData * geoData, const SDL_MouseMotionEvent & e, const Ray<GlobalPosition3D> & ray) override; - void create(Network * network, const Node::Ptr & p1, const Node::Ptr & p2) const; + Link::CCollection create(Network * network, const Node::Ptr & p1, const Node::Ptr & p2) const; Node::Ptr p1; }; |