summaryrefslogtreecommitdiff
path: root/SurvivalTest/Assets/Scripts/UI/Panel/PanelTopStuffBar/PanelTopStuffBar.cs
blob: c523152584670cf56d6290d3d18eba90057b5b85 (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 UIWeaponBar m_WeaponBar;
	public UIPropBar m_PropBar;
	public UIItemBar m_ItemBar;

	public override void Set(object param)
	{
		m_WeaponBar.Set();
		m_PropBar.Set();
		m_ItemBar.Set();
	}
}