123456789101112131415161718192021222324252627282930313233 |
- #ifndef LS_STD_BUTTON_HPP
- #define LS_STD_BUTTON_HPP
- #include <ls-std/ls-std-event.hpp>
- namespace test::event
- {
- class Button : public ls::std::event::EventListener
- {
- public:
- explicit Button();
- ~Button() noexcept override;
- [[nodiscard]] bool isClicked() const;
- void onClickEvent();
- private:
- bool clicked{};
- };
- }
- #endif
|