mirror of
https://github.com/narzoul/DDrawCompat
synced 2024-12-30 08:55:36 +01:00
16 lines
237 B
C++
16 lines
237 B
C++
#pragma once
|
|
|
|
#include <Config/HotKeySetting.h>
|
|
|
|
namespace Config
|
|
{
|
|
namespace Settings
|
|
{
|
|
class TerminateHotKey : public HotKeySetting
|
|
{
|
|
public:
|
|
TerminateHotKey() : HotKeySetting("TerminateHotKey", "ctrl+alt+end") {}
|
|
};
|
|
}
|
|
}
|