|
using System; |
|
using System.Collections; |
|
using System.Collections.Generic; |
|
using UnityEngine; |
|
|
|
public class DisasterSaveCancel : BaseButton |
|
{ |
|
public override void RespondFun() |
|
{ |
|
transform.parent.GetComponent<DisasterSaveWin>().DisasterSaveCancel(); |
|
} |
|
}
|
|
|