chicken_dy/Assets/WX-WASM-SDK/UnityMarkdownViewer/Editor/Scripts/Layout/IActions.cs

14 lines
274 B
C#
Raw Normal View History

2022-07-27 13:57:29 +00:00
////////////////////////////////////////////////////////////////////////////////
using UnityEngine;
namespace WeChatWASM.MDV
{
public interface IActions
{
Texture FetchImage( string url );
void SelectPage( string url );
}
}