# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
-#.idea/
+.idea/
--- /dev/null
+from setup import *
+
+
+FPS = 120
+clock = pygame.time.Clock()
+
+is_running = True
+while is_running:
+ clock.tick(FPS)
+ for event in pygame.event.get():
+ if event.type == pygame.QUIT:
+ is_running = False
+ screen.fill(WHITE)
+ pygame.display.update()
+pygame.quit()
--- /dev/null
+import pygame
+
+pygame.init()
+WIDTH, HEIGHT = 800, 500
+
+screen = pygame.display.set_mode((WIDTH, HEIGHT))
+
+pygame.display.set_caption("Fruit Ninja")
+
+# colors
+WHITE = (255, 255, 255)
+BLACK = (0, 0, 0)
+RED = (255, 0, 0)