Game.draw - Pixelize
game.draw = () => {
// Draw Game Sprites
};Game.draw is called every frame after a Game is mounted. It is called after the screen is cleared, and after Game.update.
Sprites can be drawn to the sceen with Game.sprite
game.draw = () => {
// Draw Game Sprites
};Game.draw is called every frame after a Game is mounted. It is called after the screen is cleared, and after Game.update.
Sprites can be drawn to the sceen with Game.sprite