10 lines
		
	
	
		
			265 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			265 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package main
 | 
						|
 | 
						|
func drawRobot(game *Game) {
 | 
						|
	game.screen.SetContent(game.player.position.x, game.player.position.y, '+', nil, game.style)
 | 
						|
}
 | 
						|
 | 
						|
func drawTrash(game *Game) {
 | 
						|
	game.screen.SetContent(game.player.position.x, game.player.position.y, '*', nil, game.style)
 | 
						|
}
 |