Files
nostalgia/src/olympic/studio/applib/src/popups/about.hpp
Gary Talent d8f847d707
All checks were successful
Build / build (push) Successful in 1m20s
[studio/applib] Move popup types into their own directory
2025-05-24 15:01:17 -05:00

28 lines
445 B
C++

/*
* Copyright 2016 - 2025 Gary Talent (gary@drinkingtea.net). All rights reserved.
*/
#pragma once
#include <ox/event/signal.hpp>
#include <ox/std/string.hpp>
#include <turbine/context.hpp>
#include <studio/popup.hpp>
namespace studio {
class AboutPopup final: public ig::Popup {
private:
ox::String const m_text;
public:
explicit AboutPopup(turbine::Context &ctx) noexcept;
void draw(Context &sctx) noexcept override;
};
}