26 lines
422 B
C#
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];
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|