You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
710 B
Python

#####
#Paths / Assets
#####
import pyglet
draw_batch = pyglet.graphics.Batch()
#-> batch to identify who needs what to do
#-> draw_batch = should be drawn
pyglet.resource.path = ['graphics']
pyglet.resource.reindex()
max_design_intro_image = pyglet.resource.image("Max Design Introscreen.png")
artwork_intro_image = pyglet.resource.image("Introscreen_Artwork.png")
programmers_intro_image = pyglet.resource.image("Introscreen_Programmers.png")
music_intro_image = pyglet.resource.image("Introscreen_Musik.png")
title_intro_image = pyglet.resource.image("TitleScreen.png")
blackScreen = pyglet.resource.image("Blackscreen.png")
configScreen = pyglet.resource.image("ConfigScreen.png")