mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
11 lines
303 B
C++
11 lines
303 B
C++
#pragma once
|
|
|
|
class CShutdownDialog
|
|
{
|
|
public:
|
|
static CShutdownDialog* Create(HINSTANCE instance, HWND parent, const TCHAR* windowTitle);
|
|
virtual ~CShutdownDialog() {}
|
|
virtual bool IsDismissed(DWORD& result) = 0; // result==IDOK means user requested a kill process
|
|
virtual void CloseDialog() = 0;
|
|
};
|