Need to rename the functions:
move , move_to , move_to_coord
We use almost the same name for functions with different implementations. This can lead to confusion because their names do not reflect their differences. To avoid polymorphism, it is recommended to use more descriptive names for functions.
Need to rename the functions:
move
,move_to
,move_to_coord
We use almost the same name for functions with different implementations. This can lead to confusion because their names do not reflect their differences. To avoid polymorphism, it is recommended to use more descriptive names for functions.