10 lines
232 B
C#
10 lines
232 B
C#
using UnityEditor;
|
|
|
|
namespace IronSource.Editor
|
|
{
|
|
public interface IAdapterSettings
|
|
{
|
|
void updateProject(BuildTarget buildTarget, string projectPath);
|
|
void updateProjectPlist(BuildTarget buildTarget, string plistPath);
|
|
}
|
|
} |