18 lines
510 B
C#
18 lines
510 B
C#
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace GameWrapper.UI.Common
|
|
{
|
|
public interface ICurrencyList
|
|
{
|
|
void SetInfo(GameObject root, List<int> currencyIDList, List<int> showPlusItemList,
|
|
UI_CurrencyList.NumberType type, bool defaultShow = false);
|
|
void Refresh(GameObject root);
|
|
void Dispose(GameObject root);
|
|
}
|
|
|
|
public static class CurrencyServiceHandle
|
|
{
|
|
public static ICurrencyList CurrencyService { get; set; }
|
|
}
|
|
} |