Files
Main/Assets/Code/Logic/_Required/Input/Interface/IPlayerInputer.cs
2025-01-25 04:38:09 +08:00

24 lines
448 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using UnityEngine;
namespace Thousandto.Code.Logic
{
/// <summary>
/// 玩家的一些输入信息
/// </summary>
public interface IPlayerInputer
{
//是否已经跳起
bool IsJumped { get; }
//是否有效
bool IsValid { get; }
//控制器控制的角色位置
Vector2 Position2d { get; }
}
}