|
ありがとうございました
目的が初期化だったので、以下のようにクラスにコンストラクタを作ることで解決できました
ありがとうございます
// クラス
public class Specfication_MAP
{
public string ground; // 地面
public string wall; // 壁やオブジェクト
public string hitwall; // 当たり判定用オブジェクト
public string stagename; // ステージ名表示
public string stagename_E; // ステージ名英語
public int npc_num; // npcの配置数
// コンストラクタ
public Specfication_MAP(string ground, string wall, string hitwall, string stagename, string stagename_E, int npc_num)
{
this.ground = ground;
this.wall = wall;
this.hitwall = hitwall;
this.stagename = stagename;
this.stagename_E = stagename_E;
this.npc_num = npc_num;
}
};
// インスタンス生成など
public Specfication_MAP[] sm = new Specfication_MAP[999];
sm[0] = new Specfication_MAP("a","b","c","d","e",0);
|