/****************************************************************************** * File - about.h * Author - Joey Pollack * Date - 2021/11/03 (y/m/d) * Mod Date - 2021/11/03 (y/m/d) * Description - The About panel ******************************************************************************/ #ifndef PANEL_ABOUT_H_ #define PANEL_ABOUT_H_ #include "iPanel.h" namespace lunarium { class Editor; class AboutPanel : public Panel { public: AboutPanel(); // Returns false if the window is closed bool DoFrame(); }; } #endif // PANEL_ABOUT_H_