mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-14 05:34:48 +00:00
16 lines
447 B
C#
16 lines
447 B
C#
namespace ElectronNET.API
|
|
{
|
|
public static class Electron
|
|
{
|
|
/// <summary>
|
|
/// Communicate asynchronously from the main process to renderer processes.
|
|
/// </summary>
|
|
public static IpcMain IpcMain { get { return IpcMain.Instance; } }
|
|
|
|
/// <summary>
|
|
/// Control your application's event lifecycle.
|
|
/// </summary>
|
|
public static App App { get { return App.Instance; } }
|
|
}
|
|
}
|