7 lines
189 B
C#
7 lines
189 B
C#
using UnityEngine;
|
|
|
|
public interface IPlayableGraphRelated
|
|
{
|
|
MonoBehaviour Init(Transform playerAnimatorTrans, bool isLocalPlayer);
|
|
void Disable(Transform playerAnimatorTrans);
|
|
} |