You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Modules: Don't build editor-specific classes in templates
They're moved to an `editor` subfolder so that we can easily handle them separately.
This commit is contained in:
@@ -31,13 +31,14 @@
|
||||
#ifndef REMOTE_DEBUGGER_PEER_WEBSOCKET_H
|
||||
#define REMOTE_DEBUGGER_PEER_WEBSOCKET_H
|
||||
|
||||
#ifdef JAVASCRIPT_ENABLED
|
||||
#include "modules/websocket/emws_client.h"
|
||||
#else
|
||||
#include "modules/websocket/wsl_client.h"
|
||||
#endif
|
||||
#include "core/debugger/remote_debugger_peer.h"
|
||||
|
||||
#ifdef JAVASCRIPT_ENABLED
|
||||
#include "emws_client.h"
|
||||
#else
|
||||
#include "wsl_client.h"
|
||||
#endif
|
||||
|
||||
class RemoteDebuggerPeerWebSocket : public RemoteDebuggerPeer {
|
||||
Ref<WebSocketClient> ws_client;
|
||||
Ref<WebSocketPeer> ws_peer;
|
||||
|
||||
Reference in New Issue
Block a user