예제 #1
0
파일: User.cs 프로젝트: JGallardo4/sharenet
 public void Add(Shareable s)
 {
     shareables.Add(s);
     s.TransferTo(this);
 }
예제 #2
0
파일: User.cs 프로젝트: JGallardo4/sharenet
 public void Remove(Shareable s)
 {
     shareables.Remove(s);
 }