コード例 #1
0
ファイル: Material.cs プロジェクト: Patapom/GodComplex
 public Layer( Material _owner, int _index )
     : this(_owner)
 {
     m_index = _index;
 }
コード例 #2
0
ファイル: Material.cs プロジェクト: Patapom/GodComplex
 public Layer( Material _owner, int _index, BinaryReader R )
     : this(_owner, _index)
 {
     Read( R );
 }
コード例 #3
0
ファイル: Material.cs プロジェクト: Patapom/GodComplex
 public Layer( Material _owner )
 {
     m_owner = _owner;
 }