From e6a924a3f7f447d8b0da4dbbbd813797149da2c6 Mon Sep 17 00:00:00 2001 From: Hayodea Hekol Date: Thu, 19 Feb 2026 19:53:41 -0400 Subject: [PATCH] Add new class PuppeteerComponent --- include/spinscale/component.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/include/spinscale/component.h b/include/spinscale/component.h index d94ec77..977f3a6 100644 --- a/include/spinscale/component.h +++ b/include/spinscale/component.h @@ -49,6 +49,18 @@ public: PuppetApplication &parent; }; +namespace pptr { + +class PuppeteerComponent +: public Component +{ +public: + PuppeteerComponent(const std::shared_ptr &thread); + ~PuppeteerComponent() = default; +}; + +} // namespace pptr + } // namespace sscl #endif // COMPONENT_H