WXGame/b1/Assets/脚本/基础/ForgingTable.cs

27 lines
513 B
C#
Raw Normal View History

2024-10-23 09:14:01 +08:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
/// <summary>
/// 锻造台类
/// </summary>
public class ForgingTable
{
/// <summary>
/// 名字
/// </summary>
private string name;
/// <summary>
/// 锻造时间
/// </summary>
private float forgtome;
/// <summary>
/// 锻造等级
/// </summary>
private int grade;
/// <summary>
/// 锻造太放入的材料
/// </summary>
private List<Article> articles;
}