You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
589 B
C++
27 lines
589 B
C++
/******************************************************************************
|
|
* 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_
|