コード例 #1
0
 public NewEmotionCreatedMessage(Emotion emotion, Agent agent)
 {
     Emotion = emotion;
     Agent = agent;
 }
コード例 #2
0
ファイル: Sheriff.cs プロジェクト: vladdie/Autonomous-Agents
 private static bool IsAgentBandit(Agent agent)
 {
     return agent.GetType() == typeof(Bandit);
 }