From: Matthijs Kooijman Date: Mon, 11 Jun 2007 07:52:09 +0000 (+0200) Subject: * Remove "speed" parameter from Bomberman::move_to_direction() to match implementation. X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2FABM2.git;a=commitdiff_plain;h=716fe3814b66a0c98805c2f5af656fc1d1d1ef2e * Remove "speed" parameter from Bomberman::move_to_direction() to match implementation. --- diff --git a/ABM2/Playground.h b/ABM2/Playground.h index ae49537..541bf2a 100755 --- a/ABM2/Playground.h +++ b/ABM2/Playground.h @@ -21,7 +21,7 @@ public: void Update(); void move(int xloc, int yloc); void move_to(int xloc, int yloc); - void move_to_direction(TMoveDirection dir, int speed); + void move_to_direction(TMoveDirection dir); int getY(); int getX(); int getHeight();