Can you make this sprite move using makerbuinos buttons

please can you help me to make my first game
here is the code
#include <SPI.h>
#include <Gamebuino.h>
Gamebuino gb;

const byte PROGMEM skin[] =
{
8,8,
B00111100,
B00111100,
B00011000,
B00111100,
B01011010,
B00011000,
B00100100,
B00100010,

};

void setup() {
gb.begin();
gb.titleScreen(F(“fortbuino”));

}

void loop() {
if(gb.update()){
gb.display.drawBitmap(10,10,skin);
}
}