using UnityEngine;

namespace Polybrush
{
	/**
	 *	Interface for objects that contain a set of default values.
	 */
	public interface z_IHasDefault
	{
		/**
		 *	Set this object to use default values.
		 */
		void SetDefaultValues();
	}
}
