22 lines
294 B
C
Raw Normal View History

2018-05-19 14:55:27 +02:00
#pragma once
#include "Window.h"
#include <Windows.h>
#include <TextEdit.h>
2018-05-19 14:55:27 +02:00
class AboutBox : public Window
{
WindowRef window;
TEHandle textEdit;
2018-05-19 14:55:27 +02:00
static AboutBox* aboutBox;
AboutBox();
public:
~AboutBox();
virtual void Update();
static void ShowAboutBox();
};