This commit is contained in:
CortexCore
2023-09-01 14:33:54 +08:00
parent 4fadd3a530
commit 8ef5c7ec0a
451 changed files with 1048940 additions and 2028 deletions

View File

@@ -1,5 +1,23 @@
namespace BITFALL.Player.Movement
{
public struct PlayerCancelRunCommand{}
public struct PlayerDisableRunCommand
{
public readonly object Lock;
public PlayerDisableRunCommand(object @lock)
{
Lock = @lock;
}
}
public struct PlayerEnableRunCommand
{
public readonly object Lock;
public PlayerEnableRunCommand(object @lock)
{
Lock = @lock;
}
}
public struct OnPlayerJumpCommand{}
public struct OnPlayerLandCommand{}
}