using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class ToolConfigInfo
{
///
/// 工具ID
///
public string id;
///
/// 工具名称
///
public string toolName;
///
/// 工具类型
///
public string toolType;
///
/// 工具描述
///
public string toolDescription;
public string en_toolName;
public string en_toolType;
public string en_toolDescription;
}