コード例 #1
0
ファイル: XdParser.cs プロジェクト: potkpot/AkyuiUnity
 public XdArtboard(XdManifestChildJson manifest, XdArtboardJson artboard, XdResourcesJson resources, uint hash)
 {
     Manifest  = manifest;
     Artboard  = artboard;
     Resources = resources;
     Hash      = hash;
 }
コード例 #2
0
ファイル: XdParser.cs プロジェクト: studentutu/AkyuiUnity
 public XdArtboard(string name, XdManifestChildJson manifest, XdArtboardJson artboard, XdResourcesJson resources, uint hash)
 {
     Name      = name;
     Manifest  = manifest;
     Artboard  = artboard;
     Resources = resources;
     Hash      = hash;
 }
コード例 #3
0
 public XdArtboard(XdManifestChildJson manifest, XdArtboardJson artboard, XdResourcesJson resources)
 {
     Manifest  = manifest;
     Artboard  = artboard;
     Resources = resources;
 }