Singularity/Assets/Plugins/ImaginationOverflow/UniversalDeepLinking/Editor/PreBuild/IPreBuild.cs

10 lines
225 B
C#
Raw Normal View History

2024-05-06 14:45:45 -04:00
using UnityEditor;
namespace ImaginationOverflow.UniversalDeepLinking.Editor.PreBuild
{
public interface IPreBuild
{
void OnPreprocessBuild(AppLinkingConfiguration configurations, string path);
}
}