Example #1
0
 public Appointment(float time, string name, Character character, Conversation conversation)
 {
     this.time = time;
     this.name = name;
     this.conversationPartner = character;
     this.conversation        = conversation;
     this.place = () => this.conversationPartner.transform;
 }
Example #2
0
 public Appointment(float time, string name, ProceduralPoint place)
 {
     this.time  = time;
     this.name  = name;
     this.place = place;
 }
Example #3
0
 public Appointment()
 {
     time  = 0;
     name  = "unnamed";
     place = null;
 }