示例#1
0
文件: RLForm.cs 项目: paweenwich/sc2
 public void SetLearningAgent(LearningAgent learningAgent)
 {
     this.learningAgent = learningAgent;
     this.Text          = String.Format("RL [{0}]", learningAgent.GetType().ToString());
 }
示例#2
0
 public Me(LearningAgent la)
 {
     type          = WorldObjectType.Me;
     learningAgent = la;
 }