コード例 #1
0
ファイル: Persuit.cs プロジェクト: FishLiuWei/DesignMode
 public Persuit(SchoolGirl mm)
 {
     this.mm = mm;
 }
コード例 #2
0
 public Proxy(SchoolGirl mm)
 {
     this.gg = new Persuit(mm);
 }