Guest User

Untitled

a guest
Apr 20th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. def setup_maze_window(self):
  2. # Set up window and layers
  3. pygame.display.set_caption('MyMaze')
  4. pygame.mouse.set_visible(0)
  5. self.background = self.background.convert()
  6. self.background.fill(WHITE)
  7. self.m_layer = self.m_layer.convert_alpha()
  8. self.m_layer.fill(NO_COLOR)
  9. self.s_layer = self.s_layer.convert_alpha()
  10. self.s_layer.fill(NO_COLOR)
Add Comment
Please, Sign In to add comment