전체 글

전체 글

    클래스 생성자

    public class Item{public int ID;public string Name;public string Des; //생성자는 Item이 생성되었을 때 값을 채워주기 위함pulbic Item (int id, string name, string des){ID = id;Name = name;Des = des;}} public class LoadSaveManager : Monobehaviour { void CreateItem(){Item MyItem = new Item();