// *********************************************************************** // Assembly : Game // Author : Kimch // Created : 2020-05-20 // Description : // Last Modified By : // Last Modified On : // *********************************************************************** // // // *********************************************************************** using System.Collections; using System.Collections.Generic; using UnityEngine; namespace G { //using World; public class Cha_AnimationEvent : MonoBehaviour { EntityMainPlayer script_cha; // Start is called before the first frame update void Start() { script_cha = EntityMainPlayer.Instance; } void StepOn() { script_cha.StepOn(); } // Update is called once per frame void Update() { } } }