mirror of
https://github.com/clockworkpi/launcher.git
synced 2025-12-12 17:58:50 +01:00
14 lines
264 B
Python
14 lines
264 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from sound_page import SoundPage
|
|
|
|
import myvars
|
|
|
|
def InitSoundPage(main_screen):
|
|
|
|
myvars.SoundPage = SoundPage()
|
|
|
|
myvars.SoundPage._Screen = main_screen
|
|
myvars.SoundPage._Name = "Sound Volume"
|
|
myvars.SoundPage.Init()
|