//Generates a newly spawned random playable block at the top of the map
 public void GenerateNewBlock()
 {
     CurrentBlock = BlockFactory.CreateBlockRandom(Drawer, 5, 0);
 }