using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using TweenAnimation;
public class TweenEventHandlerTest : MonoBehaviour , ITweenEventHandler
{
public void OnTweenEvent(string eventName)
{
}
[ExecuteInEditMode]
public void RecvEvent(string content)
{
Debug.Log(content);
}
}