| 1234567891011121314151617181920212223242526272829303132 |
- using System;
- using System.Collections.Generic;
- using System.Runtime.InteropServices;
- #if ATOMIC_DESKTOP
- namespace AtomicEngine
- {
- public partial class NETServiceApplication : IPCClientApp
- {
- public static NETServiceApplication Create()
- {
- // Initialize AtomicNET
- AtomicNET.Initialize();
- var app = CreateInternal();
- app.Initialize();
- AtomicNET.RegisterSubsystem("IPC");
- return app;
- }
- }
- }
- #endif
|