27 lines
543 B
C#
27 lines
543 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using UnityEngine;
|
|
|
|
namespace BrewMonster.Assets.PerfectWorld.Scripts.UI.GamePlay
|
|
{
|
|
public class AUIImagePicture : MonoBehaviour
|
|
{
|
|
CECShortcut pSC;
|
|
|
|
public void SetDataPtr(CECShortcut pvData, string strName)
|
|
{
|
|
pSC = pvData;
|
|
}
|
|
public void Execute()
|
|
{
|
|
if (pSC != null)
|
|
{
|
|
pSC.Execute();
|
|
}
|
|
}
|
|
}
|
|
}
|