0.1 Merge #85

Merged
Spafi merged 133 commits from Development into main 2024-03-12 22:02:51 +01:00
12 changed files with 3 additions and 0 deletions
Showing only changes of commit 04e0b68cd7 - Show all commits

BIN
art/images/people/vivi.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 497 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 326 B

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
audio/soundeffects/wind.mp3 Normal file

Binary file not shown.

View file

@ -5,10 +5,13 @@ import time
import random import random
from classes import * from classes import *
from viecher import * from viecher import *
from pygame import mixer
fps = 60 fps = 60
def setUp(config): def setUp(config):
pygame.init() pygame.init()
mixer.music.load('audio/music/thebritons(1.1).mp3')
mixer.music.play(-1)
if config["fullscreen"]: if config["fullscreen"]:
screen = pygame.display.set_mode(config["res"], pygame.FULLSCREEN) screen = pygame.display.set_mode(config["res"], pygame.FULLSCREEN)
else: else: