blob: 2d1e02bae30e7e6e8590d75f7fb5adb1330da9b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class PanelTopStuffBar : PanelBase
{
public UIEquipBar m_EquipBar;
public UIItemBar m_ItemBar;
public UIDecorationBar m_DecorationBar;
public override void Set(object param)
{
m_EquipBar.Set();
m_ItemBar.Set();
m_DecorationBar.Set();
}
}
|