ObjectDetailList.cs 181 B

12345678910
  1. using System.Collections.Generic;
  2. using UnityEngine;
  3. namespace MTE
  4. {
  5. internal class ObjectDetailList : ScriptableObject
  6. {
  7. public List<ObjectDetail> list;
  8. }
  9. }