FunctionValue.cs 204 B

12345678910
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. [System.Serializable]
  5. public class FunctionValue
  6. {
  7. public int index;
  8. public int value;
  9. public bool isShow;
  10. }