work on sim bot

This commit is contained in:
Boki 2026-04-04 16:44:32 -04:00
parent 8ca257bc79
commit f09ee5d106
29 changed files with 889 additions and 60 deletions

View file

@ -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) { }
}