using Pausable;
namespace Movement
{
public interface IMovement : IPausable
float BaseSpeed { get; set; }
void Move(float value);
}