Esempio n. 1
0
 public void AddAttachment(AttachableThing t)
 {
     if (attachments == null)
     {
         attachments = new List <AttachableThing>();
     }
     attachments.Add(t);
 }
Esempio n. 2
0
 public void RemoveAttachment(AttachableThing t)
 {
     attachments.Remove(t);
 }