24 lines
448 B
C#
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; }
|
|
}
|
|
}
|