/**
* Identify if the player needs to move, and move them in the direction specified
*/
private static void moveCharacter()
{
Direction moveDir = Direction.none;
//identified movement, now do it.
//try to detect movement from keyBoardInput
if (BaseVars.keyboardInput.DOWN)
{
moveDir = Direction.down;