IndieGame/client/Assets/Scripts/System/PropItem/PropItemData.cs
DOBEST\zhaoyingjie f242607587 初始化工程
2024-10-11 10:12:15 +08:00

26 lines
422 B
C#

using System;
using System.Collections;
using System.Collections.Generic;
using TableConfig;
using UnityEngine;
namespace Ether
{
[Serializable]
public class PropItemData
{
public int itemId;
public int num;
public PropItemTable PropItemTable
{
get
{
return TableProvider.Tables.TbPropItem[itemId];
}
}
}
}