blob: 656c177993ba37b129d718afcac4ff9d10edb0d0 (
plain)
1
2
3
4
5
6
7
8
9
10
|
using System;
using UILib;
namespace XUtliPoolLib
{
public interface IModalDlg : IXInterface
{
void LuaShow(string content, ButtonClickEventHandler handler, ButtonClickEventHandler handler2);
}
}
|