mirror of
https://github.com/UOX3DevTeam/UOX3
synced 2026-08-13 12:27:04 -04:00
13 lines
253 B
JavaScript
13 lines
253 B
JavaScript
/// <reference path="../definitions.d.ts" />
|
|
// @ts-check
|
|
function ConsoleRegistration()
|
|
{
|
|
RegisterKey( 'q', "shutdown" );
|
|
RegisterKey( 'Q', "shutdown" );
|
|
RegisterKey( 27, "shutdown" ); // escape
|
|
}
|
|
|
|
function shutdown()
|
|
{
|
|
Console.BeginShutdown();
|
|
}
|