Exemplo n.º 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;
 }
Exemplo n.º 2
0
 public Appointment(float time, string name, ProceduralPoint place)
 {
     this.time  = time;
     this.name  = name;
     this.place = place;
 }
Exemplo n.º 3
0
 public Appointment()
 {
     time  = 0;
     name  = "unnamed";
     place = null;
 }