MoTaForPSVita/Assets/Scripts/Event/Level/EventLevel4Actor1.cs
2024-05-06 11:22:04 +08:00

15 lines
446 B
C#

public class EventLevel4Actor1 : ActorController
{
ShopComm.E_ShopFloor floor = ShopComm.E_ShopFloor.F4;
public override bool Interaction()
{
// 打开商店界面
GameManager.Instance.EventManager.OnShopShow?.Invoke(GetComponent<ActorController>().Name, floor,
this,
() => ShopComm.BuyHP(floor),
() => ShopComm.BuyAtk(floor),
() => ShopComm.BuyDef(floor));
return false;
}
}