示例#1
0
 private void watchAssetFiles(FubuRuntime runtime)
 {
     if (_watcher == null)
     {
         _watcher = runtime.Factory.Get <AssetFileWatcher>();
         _watcher.StartWatching(this, _configuration);
     }
 }
示例#2
0
 private void watchAssetFiles(FubuRuntime runtime)
 {
     if (_watcher == null)
     {
         _watcher = runtime.Facility.Get <AssetFileWatcher>();
         _watcher.StartWatching(this);
     }
 }
示例#3
0
 private void watchAssetFiles(FubuRuntime runtime)
 {
     if (_watcher == null)
     {
         _watcher = runtime.Factory.Get<AssetFileWatcher>();
         _watcher.StartWatching(this, _configuration);
     }
 }