14 lines
274 B
C#
14 lines
274 B
C#
|
|
////////////////////////////////////////////////////////////////////////////////
|
|||
|
|
|
|||
|
|
using UnityEngine;
|
|||
|
|
|
|||
|
|
namespace WeChatWASM.MDV
|
|||
|
|
{
|
|||
|
|
public interface IActions
|
|||
|
|
{
|
|||
|
|
Texture FetchImage( string url );
|
|||
|
|
void SelectPage( string url );
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|