10 lines
156 B
Python
10 lines
156 B
Python
from . import path
|
|
from .abc import Style
|
|
|
|
|
|
path = path / "background"
|
|
|
|
|
|
class Background(Style):
|
|
main = path / "main.png"
|
|
game = path / "game.png"
|