27 lines
513 B
C#
27 lines
513 B
C#
|
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;
|
|||
|
|
|||
|
}
|