using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class FlowInterObjectBase : MonoBehaviour
{
    //public FlowsBase 流程脚本;
    public string 物品名称;
    public 物品分类 物品分类;
    public 物品状态 物品状态;
    public bool 交互完成 = false; 
    public int 小步骤序号;
   // [HideInInspector]
    public bool first = true;
   
    public int 小步分值;
    // Start is called before the first frame update
    void Start()
    {
        
    }

    // Update is called once per frame
    void Update()
    {
        
    }
}