using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace AdvancedInspector
{
///
/// Give an object the power to detect if it can be clone to the target location.
///
public interface ICopiable
{
///
/// Should return true if the object can be copied to replace the object destination.
///
bool Copiable(object destination);
}
}