using System.Collections;
|
using System.Collections.Generic;
|
using UnityEngine;
|
using Snxxz.UI;
|
|
public class PutawayData:Singleton<PutawayData> {
|
public byte priceType = 0;
|
public uint priceCnt = 0;//出售价格
|
public string pwd = string.Empty;//交易密码
|
public ushort itemCnt = 0;
|
|
public ItemModel itemModel = null;
|
|
public void Init()
|
{
|
priceType = 0;
|
priceCnt = 0;
|
pwd = string.Empty;
|
itemModel = null;
|
itemCnt = 0;
|
}
|
}
|