-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
23 lines (17 loc) · 811 Bytes
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#
# Fracteur Copyright (c) 2023 LyFlow and Florely
# This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
# This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details.
#
from os.path import join
import pygame
from program.application import App
from program.utils import path
if __name__ == "__main__":
# Initialisation de PyGame
pygame.init()
pygame.display.set_caption("Fracteur")
pygame.display.set_icon(pygame.image.load(join(path.ABSOLUTE_DIR_PATH, "icone.png")))
# Initialisation et démarrage de l'application
app = App()
app.run()