mirror of
https://github.com/janishutz/BiogasControllerApp.git
synced 2025-11-25 13:54:24 +00:00
9 lines
159 B
Python
9 lines
159 B
Python
from kivy.uix.screenmanager import Screen
|
|
from kivy.lang import Builder
|
|
|
|
|
|
class CreditsScreen(Screen):
|
|
pass
|
|
|
|
Builder.load_file('./gui/credits/credits.kv')
|