2022-03-12 15:56:25 +08:00

47 lines
833 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.InputSystem;
public class Player : PlayerControl
{
/// <summary>
/// 鯤소먼竟栖
/// </summary>
Rigidbody2D m_rigidbody;
/// <summary>
/// 鯤소놓迦뺏栖
/// </summary>
override protected void Start()
{
base.Start();
m_rigidbody = gameObject.GetComponent<Rigidbody2D>();
}
void Update()
{
}
/// <summary>
/// 路畇왠齡변鑒栖
/// </summary>
/// <param name="ctx"></param>
override protected void OnMove(InputAction.CallbackContext ctx)
{
base.OnMove(ctx);
}
override protected void OnAtk() {
}
override protected void OnJump() {
}
override protected void OnInteract() {
}
}