DataWorldItemContainer.cs 492 B

123456789101112131415161718192021
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using KairoEngine.Inventory;
  5. namespace KairoEngine.CharacterSystem
  6. {
  7. [System.Serializable]
  8. public class DataWorldItemContainer
  9. {
  10. public string containerName;
  11. public List<ItemRef> items = new List<ItemRef>();
  12. public DataWorldItemContainer(string name, List<ItemRef> items)
  13. {
  14. this.containerName = name;
  15. this.items = items;
  16. }
  17. }
  18. }