AxibugEmuOnline/AxibugEmuOnline.Client/Assets/Script/Emu/InputManager/KeyMapper.cs

16 lines
336 B
C#
Raw Normal View History

2024-07-18 15:14:45 +08:00
using MyNes.Core;
using System.Collections.Generic;
using System.Linq;
using UnityEngine;
namespace AxibugEmuOnline.Client.Input
{
public abstract class KeyMapper
2024-07-18 15:14:45 +08:00
{
public abstract void Init();
public abstract void Update();
public abstract bool IsPressing(EnumKeyKind keyKind);
2024-07-18 15:14:45 +08:00
}
}