ElectronNET.API: Re-add moved types

This commit is contained in:
softworkz
2025-10-13 13:22:37 +02:00
parent 9275f2a765
commit 3811b7ea20
4 changed files with 234 additions and 3 deletions

View File

@@ -0,0 +1,15 @@
#pragma warning disable IDE0130 // Namespace does not match folder structure
// ReSharper disable once CheckNamespace
namespace ElectronNET.API
{
internal static class BridgeConnector
{
public static SocketIoFacade Socket
{
get
{
return ElectronNetRuntime.GetSocket();
}
}
}
}