Example #1
0
 /// <summary>
 /// Destroys the <see cref="RemoteClassLoader"/>
 /// </summary>
 public void Unload()
 {
     m_remoteLoader = null;
 }
Example #2
0
 /// <summary>
 /// Creates a new LocalClassLoader
 /// </summary>
 /// <param name="behaviorDirectory">The directory where the behaviors are located</param>
 public LocalClassLoader(String behaviorDirectory)
 {
     m_behaviorDirectory = behaviorDirectory;
     m_remoteLoader      = new RemoteClassLoader();
 }