}
return false;
}
private static boolean validateCards() {
MemoryCard one = Storage.getInstance().getCards().get(0);
MemoryCard two = Storage.getInstance().getCards().get(1);
if (one.getImageNumber() == two.getImageNumber()) {
return true;
}
return false;
}