Retro68/LaunchAPPL/Server/AboutBox.h
2018-05-20 11:53:48 +02:00

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();
};