summaryrefslogtreecommitdiff
path: root/Assets/UI_Extension/Scripts/Animation/Tween/ITweenEventHandler.cs
blob: 4b53b97bafc91b86ca6569bd19f35c3494472f6b (plain)
1
2
3
4
5
6
7
8
9
10
11
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

namespace TweenAnimation
{
    public interface ITweenEventHandler
    {
        void OnTweenEvent(string eventName);
    }
}