work on sim bot
This commit is contained in:
parent
8ca257bc79
commit
f09ee5d106
29 changed files with 889 additions and 60 deletions
|
|
@ -1,3 +1,5 @@
|
|||
using System.Numerics;
|
||||
|
||||
namespace Nexus.Core;
|
||||
|
||||
public interface IInputController
|
||||
|
|
@ -16,4 +18,10 @@ public interface IInputController
|
|||
void LeftUp();
|
||||
void RightDown();
|
||||
void RightUp();
|
||||
|
||||
/// <summary>
|
||||
/// Sets the direction for the next dodge roll. Called before KeyPress(0x21).
|
||||
/// Default no-op for real input controllers (direction comes from game state).
|
||||
/// </summary>
|
||||
void SetDodgeDirection(Vector2 direction) { }
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue