mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-19 18:46:30 +00:00
22 lines
294 B
C++
22 lines
294 B
C++
#pragma once
|
|
|
|
#include "Window.h"
|
|
#include <Windows.h>
|
|
#include <TextEdit.h>
|
|
|
|
class AboutBox : public Window
|
|
{
|
|
WindowRef window;
|
|
TEHandle textEdit;
|
|
|
|
static AboutBox* aboutBox;
|
|
|
|
AboutBox();
|
|
public:
|
|
~AboutBox();
|
|
|
|
virtual void Update();
|
|
|
|
static void ShowAboutBox();
|
|
};
|