You've already forked CC-Framework.Commercialization
update
This commit is contained in:
33
Assets/Runtime/ADAggregator/ADConfig.cs
Normal file
33
Assets/Runtime/ADAggregator/ADConfig.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace Runtime.ADAggregator
|
||||
{
|
||||
[CreateAssetMenu(fileName = "AdConfig", menuName = "Commercialization/Ad_Config")]
|
||||
public class ADConfig : ScriptableObject
|
||||
{
|
||||
public string ConfigName;
|
||||
|
||||
public string Id;
|
||||
|
||||
public string Key;
|
||||
|
||||
public string Key2;
|
||||
|
||||
public AdKeyValue BaseAwardAdKeyValue;
|
||||
|
||||
public AdKeyValue BaseInteractionAdKeyValue;
|
||||
|
||||
public AdKeyValue BaseSplashAdKeyValue;
|
||||
|
||||
public List<AdKeyValue> CommonKeyValues;
|
||||
}
|
||||
|
||||
[Serializable]
|
||||
public class AdKeyValue
|
||||
{
|
||||
public string key;
|
||||
public string value;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user