blob: dafd0193ae88e1242bb5a65ce354f31e08073dc1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
using UILib;
using UnityEngine;
using System.Collections;
using XUtliPoolLib;
public class XUIBillBoardCompRef : MonoBehaviour, IXUIBillBoardCompRef
{
public XUISpecLabelSymbol _NameSpecLabelSymbol;
public XUISpecLabelSymbol _GuildSpecLabelSymbol;
public XUISpecLabelSymbol _DesiSpecLabelSymbol;
public XUIProgress _BloodBar;
public XUIProgress _IndureBar;
public IXUISpecLabelSymbol NameSpecLabelSymbol { get { return _NameSpecLabelSymbol; } }
public IXUISpecLabelSymbol GuildSpecLabelSymbol { get { return _GuildSpecLabelSymbol; } }
public IXUISpecLabelSymbol DesiSpecLabelSymbol { get { return _DesiSpecLabelSymbol; } }
public IXUIProgress BloodBar { get { return _BloodBar; } }
public IXUIProgress IndureBar { get { return _IndureBar; } }
}
|