10 lines
215 B
Swift
10 lines
215 B
Swift
|
|
// FusionReward.swift
|
||
|
|
// Interface for reward handling in FusionAds
|
||
|
|
// Corresponds to FusionReward.kt in Android implementation
|
||
|
|
|
||
|
|
import Foundation
|
||
|
|
|
||
|
|
public protocol FusionReward {
|
||
|
|
var rewardAmount: Int { get }
|
||
|
|
}
|