Restructured folder structure again.
This commit is contained in:
parent
8a57a23048
commit
103da5c1d7
8 changed files with 5 additions and 9 deletions
1
wobbl_tools/pygame_tools/pgui/__init__.py
Normal file
1
wobbl_tools/pygame_tools/pgui/__init__.py
Normal file
|
@ -0,0 +1 @@
|
||||||
|
#!/usr/bin/python3
|
2
wobbl_tools/pygame_tools/pgui/widgets/__init__.py
Normal file
2
wobbl_tools/pygame_tools/pgui/widgets/__init__.py
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
#!/usr/bin/python3
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#!/usr/bin/python3
|
#!/usr/bin/python3
|
||||||
|
|
||||||
from wobbl_tools.pygame_tools.utils import *
|
from wobbl_tools.pygame_tools.utils import *
|
||||||
from wobbl_tools.pygame_tools.widgets import Hover
|
from wobbl_tools.pygame_tools.pgui.widgets import Hover
|
||||||
|
|
||||||
|
|
||||||
class Button:
|
class Button:
|
|
@ -1,7 +1,7 @@
|
||||||
#!/usr/bin/python3
|
#!/usr/bin/python3
|
||||||
|
|
||||||
from wobbl_tools.pygame_tools.utils import *
|
from wobbl_tools.pygame_tools.utils import *
|
||||||
from wobbl_tools.pygame_tools.widgets import Button
|
from wobbl_tools.pygame_tools.pgui.widgets import Button
|
||||||
|
|
||||||
|
|
||||||
class TextButton(pygame.sprite.Sprite):
|
class TextButton(pygame.sprite.Sprite):
|
|
@ -1,7 +0,0 @@
|
||||||
#!/usr/bin/python3
|
|
||||||
|
|
||||||
from wobbl_tools.pygame_tools.widgets.hover import Hover
|
|
||||||
from wobbl_tools.pygame_tools.widgets.button import Button
|
|
||||||
from wobbl_tools.pygame_tools.widgets.text_button import TextButton
|
|
||||||
from wobbl_tools.pygame_tools.widgets.text_input import TextInput
|
|
||||||
from wobbl_tools.pygame_tools.widgets.multiline_text import MultilineText
|
|
Loading…
Reference in a new issue