コード例 #1
0
ファイル: Scenario.cs プロジェクト: UltraAndre2/TestReview
 public Message(string message, int target, PersonEmotion emotion) : base()
 {
     this.message = message;
     this.target  = target;
     this.emotion = emotion;
 }
コード例 #2
0
ファイル: Scenario.cs プロジェクト: UltraAndre2/TestReview
 public PersonAction(int target, string action, PersonEmotion emotion) : base()
 {
     this.target  = target;
     this.action  = action;
     this.emotion = emotion;
 }