Stockpile.cs 578 B

12345678910111213141516171819
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using Sirenix.OdinInspector;
  5. namespace KairoEngine.Stockpiles
  6. {
  7. [System.Serializable]
  8. public class Stockpile
  9. {
  10. [HorizontalGroup("data", 0.15f), HideLabel, Tooltip("Quantity containined in this stockpile")]
  11. public int ammount = 0;
  12. [HorizontalGroup("data", 0.15f), HideLabel, Tooltip("The total that this stockpile can hold")]
  13. public int capacity = 0;
  14. [HorizontalGroup("data", 0.7f), HideLabel] public StockpilePreset stockpileType;
  15. }
  16. }