using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
|
public class EquipReinforceEventMgr
|
{
|
public static EquipReinforceEventMgr _instance;
|
public static EquipReinforceEventMgr Instance
|
{
|
get
|
{
|
if (_instance == null)
|
_instance = new EquipReinforceEventMgr();
|
return _instance;
|
}
|
}
|
|
public Action RefreshWashCostMoneyEvent;
|
public void RefreshWashCostMoney()
|
{
|
if (RefreshWashCostMoneyEvent != null)
|
RefreshWashCostMoneyEvent();
|
}
|
|
}
|