Fixed the wrong type in the IMovement

This commit is contained in:
Syntriax 2022-02-21 14:29:21 +03:00
parent 2295650e16
commit 4fa1927fdc
1 changed files with 1 additions and 1 deletions

View File

@ -5,6 +5,6 @@ namespace Movement
public interface IMovement : IPausable
{
float BaseSpeed { get; set; }
void Move(int value);
void Move(float value);
}
}