10 lines
204 B
C#
10 lines
204 B
C#
namespace KwaiAds.Scripts.Api
|
|
{
|
|
public interface InitResultCallback
|
|
{
|
|
// init success.
|
|
void OnSuccess();
|
|
// init fail.
|
|
void OnFail(int code, string msg);
|
|
}
|
|
} |