24 lines
540 B
C#
24 lines
540 B
C#
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{}
|
|
}
|
|
|