public void IncrementStackCount(STACK_TYPE type) { stackCounts[(int)type]++; }
public void DecrementStackCount(STACK_TYPE type) { stackCounts[(int)type] = Mathf.Max(0, stackCounts[(int)type] - 1); }
public int GetStackCount(STACK_TYPE type) { return(stackCounts[(int)type]); }