10 lines
217 B
Python
10 lines
217 B
Python
from . import path
|
|
from .abc import Style
|
|
from source.gui.texture.type import Texture
|
|
|
|
path = path / "background"
|
|
|
|
|
|
class Background(Style):
|
|
main = Texture(path / "main.png")
|
|
game = Texture(path / "game.png")
|