39 lines
593 B
C#
39 lines
593 B
C#
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
using System.Collections;
|
|
using Games.Item;
|
|
using System.Collections.Generic;
|
|
|
|
public class MarketPlayerLogic : UIControllerBase<MarketPlayerLogic>
|
|
{
|
|
// Use this for initialization
|
|
void OnEnable ()
|
|
{
|
|
SetInstance(this);
|
|
_TagPanel.ShowPage(0);
|
|
OnTabPage(0);
|
|
|
|
Market.AskShopInfo();
|
|
}
|
|
|
|
void OnDisable()
|
|
{
|
|
SetInstance(null);
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update ()
|
|
{
|
|
|
|
}
|
|
|
|
public void OnTabPage(int page)
|
|
{
|
|
|
|
}
|
|
|
|
public UITagPanel _TagPanel;
|
|
|
|
|
|
}
|