2023-12-26 03:47:44 +00:00
|
|
|
using System;
|
|
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
namespace AmazonAds {
|
|
|
|
|
public abstract class IAdView {
|
|
|
|
|
public abstract void FetchAd (AdResponse adResponse);
|
2024-06-24 01:28:57 +00:00
|
|
|
public void Dispose() {
|
|
|
|
|
}
|
2023-12-26 03:47:44 +00:00
|
|
|
}
|
|
|
|
|
}
|