예제 #1
0
 public void Load(Filer type)
 {
     this.x    = type.rdInt();
     this.y    = type.rdInt();
     this.r    = type.rdInt();
     this.name = type.rdString();
 }
예제 #2
0
 public void Load(Filer type)
 {
     this.x      = type.rdInt();
     this.y      = type.rdInt();
     this.width  = type.rdInt();
     this.height = type.rdInt();
     this.name   = type.rdString();
 }
예제 #3
0
파일: Line.cs 프로젝트: Shurigg/Conference
 public void Load(Filer type)
 {
     this.x1   = type.rdInt();
     this.y1   = type.rdInt();
     this.x2   = type.rdInt();
     this.y2   = type.rdInt();
     this.name = type.rdString();
 }