Files
MinFt/Client/Assets/Scripts/Services/AggAdsService.cs
2026-04-27 12:07:32 +08:00

35 lines
612 B
C#

using asap.core;
namespace game
{
public class AdsResult
{
public AdvertPopupType Type;
/// <summary>
/// //0-成功 1-失败 2 -点击 3-关闭
/// </summary>
public int Result;
}
public class AdsInterstitialResult
{
public AdvertPopupType Type;
}
public enum AdvertPopupType
{
None = 0,
Shop = 1,
Turntable = 2,
Showdown = 3,
FishingFail = 4,
Chest = 5,
Aquarium = 6,
AdWheel = 7,
LuckyMission = 8,
Cycle2 = 9,
SignInAdvert = 10,
}
}