コード例 #1
0
ファイル: Checkbox.cs プロジェクト: cyanpunk/muonline
 public Checkbox(string path)
 {
     texture = new UITexture(path);
 }
コード例 #2
0
 public Checkbox(string path)
 {
     texture = new UITexture(path);
 }
コード例 #3
0
ファイル: Button.cs プロジェクト: cyanpunk/muonline
 public Button(string path)
 {
     texture = new UITexture(path);
 }
コード例 #4
0
ファイル: Image.cs プロジェクト: cyanpunk/muonline
 public Image( string path )
 {
     texture = new UITexture(path);
 }