1
0
mirror of https://github.com/Cardidi/dotween-upm-fork.git synced 2025-12-20 17:26:03 +08:00

15 lines
458 B
C#

// 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
{
/// <summary>
/// Base interface for all tween plugins options
/// </summary>
public interface IPlugOptions
{
/// <summary>Resets the plugin</summary>
void Reset();
}
}