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