summaryrefslogtreecommitdiff
path: root/ui/editNetwork.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/editNetwork.h')
-rw-r--r--ui/editNetwork.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/ui/editNetwork.h b/ui/editNetwork.h
index 805e7ec..c25bef2 100644
--- a/ui/editNetwork.h
+++ b/ui/editNetwork.h
@@ -2,7 +2,6 @@
#include "game/geoData.h"
#include "gameMainSelector.h"
-#include "toolbar.h"
#include "worldOverlay.h"
#include <game/gamestate.h>
#include <game/network/network.h>
@@ -16,9 +15,9 @@ public:
bool click(const SDL_MouseButtonEvent & e, const Ray<GlobalPosition3D> &) override;
bool move(const SDL_MouseMotionEvent & e, const Ray<GlobalPosition3D> &) override;
- bool handleInput(const SDL_Event & e, const UIComponent::Position &) override;
+ bool handleInput(const SDL_Event & e) override;
void render(const SceneShader &, const Frustum &) const override;
- void render(const UIShader & shader, const UIComponent::Position & pos) override;
+ void render(const UIShader & shader) override;
using NetworkClickPos = std::variant<GlobalPosition3D, Node::Ptr>;
@@ -42,7 +41,6 @@ private:
Network * network;
Builder::Ptr builder;
Texture blue;
- const Font font;
};
template<typename T> class EditNetworkOf : public EditNetwork {