#ifndef INTERACTABLEWIDGET_HPP_INCLUDED #define INTERACTABLEWIDGET_HPP_INCLUDED #include "../../Core/Classes/Widget.hpp" #include "../../Core/Classes/ItemInfo.hpp" #include "../../Core/Types/Tile.hpp" #include "../../Core/Types/Point.hpp" #include "../../Core/Types/Box.hpp" #include "../../Core/Types/Convex.hpp" #include "../../Core/Input.hpp" #include namespace Interactable { class Widget : public Internal::Widget { public: Widget(const Internal::Widget& W); Widget(const Widget& W); bool IsHidden() const; std::vector GetNormalizedItemIDs() const; Box GetBox() const; Point GetPoint() const; bool Interact(const Button& B = BUTTON_LEFT) const; bool Interact(const std::string& Option) const; bool Interact(const std::vector& Options) const; operator Internal::Widget() const; }; } #endif // INTERACTABLEWIDGET_HPP_INCLUDED