// Author: Daniele Giardini - http://www.demigiant.com // Created: 2016/12/08 11:50 // License Copyright (c) Daniele Giardini // This work is subject to the terms at http://dotween.demigiant.com/license.php namespace DG.Tweening.Plugins.Options { /// /// Base interface for all tween plugins options /// public interface IPlugOptions { /// Resets the plugin void Reset(); } }