Changed the window title to "Wobbl Sand".

This commit is contained in:
The Wobbler 2024-02-25 21:42:56 +01:00
parent 1d3b70bfaf
commit 24b6d0b94d

View file

@ -61,7 +61,7 @@ class FallingSandParticle:
y += 2 y += 2
else: else:
if self.not_moving == 16: if self.not_moving == 32:
self.app.falling_sand_particles.remove(self) self.app.falling_sand_particles.remove(self)
return return
@ -82,7 +82,7 @@ class FallingSand:
pygame.init() pygame.init()
self.screen = pygame.display.set_mode((1000, 600), pygame.RESIZABLE) self.screen = pygame.display.set_mode((1000, 600), pygame.RESIZABLE)
pygame.display.set_caption("Game") pygame.display.set_caption("Wobbl Sand")
self.window = Window.from_display_module() self.window = Window.from_display_module()
self.loading_surface = self.generate_loading_surface() self.loading_surface = self.generate_loading_surface()