using UnityEngine;
namespace JBooth.MicroVerseCore.Browser
{
///
/// Implementations of this interface will be executed when dropped from the content browser into the scene view
///
public interface IContentBrowserDropAction
{
///
/// Function that is invoked when a prefab is dropped from the content browser
///
/// If true the gameobject will be destroyed from the content browser after the execute method was invoked
void Execute( out bool destroyAfterExecute);
}
}