summaryrefslogtreecommitdiff
path: root/SurvivalTest/Assets/Scripts/UI/Panel/PanelTopStuffBar/PanelTopStuffBar.cs
blob: 6e91c6b40ac6fe418b41cbb32238287b3f297781 (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 UIItemBar m_ItemBar;
	public UIDecorationBar m_DecorationBar;

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