コード例 #1
0
 public D3D11Hook(ServerInterface server)
 {
     try
     {
         var serverProxy = new ServerInterfaceProxy();
         _server = server;
         _server.OnModelsReloaded     += serverProxy.ReloadModels;
         serverProxy.OnModelsReloaded += OnModelsReloaded;
     }
     catch (Exception e)
     {
         _server.Message(e.ToString());
         throw;
     }
 }
コード例 #2
0
ファイル: ProxyCache.cs プロジェクト: dex-it/DanilovSoft.vRPC
 //[DebuggerStepThrough]
 private static void InitializePropxy <T>(string controllerName, ServerInterfaceProxy <T> p, ManagedConnection connection) where T : class
 {
     p.InitializeClone(controllerName, connection);
 }
コード例 #3
0
 public PluginMain(ServerInterfaceProxy proxy, params string[] args)
 {
 }