using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class ArrayTwo : MonoBehaviour
{
[System.Serializable]
public class item
{
public int itemID;
public string name;
public string description;
}
Even though I used [System.Serializable] I still see nothing in the inspector, anyone know the issue?
↧