mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-23 10:35:35 -04:00
19 lines
510 B
TypeScript
19 lines
510 B
TypeScript
namespace gdjs {
|
|
/**
|
|
* Does nothing apart from allowing to reporting errors.
|
|
* @category Debugging > Debugger Client
|
|
*/
|
|
export class MinimalDebuggerClient extends gdjs.AbstractDebuggerClient {
|
|
constructor(runtimeGame: RuntimeGame) {
|
|
super(runtimeGame);
|
|
}
|
|
|
|
protected _sendMessage(message: string) {}
|
|
}
|
|
|
|
//Register the class to let the engine use it.
|
|
/** @category Debugging > Debugger Client */
|
|
// @ts-ignore
|
|
export const DebuggerClient = WindowMessageDebuggerClient;
|
|
}
|