cave-story-solaris/src/Escape.h
Clownacy c838e8ebcb Add and apply the enum_ESCRETURN enum
Restored from the original source code, as it survived in the Linux
port's debug data.
2020-01-06 19:19:17 +00:00

12 lines
169 B
C

#pragma once
#include "WindowsWrapper.h"
enum enum_ESCRETURN
{
enum_ESCRETURN_exit,
enum_ESCRETURN_continue,
enum_ESCRETURN_restart
};
int Call_Escape(HWND hWnd);