7 lines
126 B
Python
7 lines
126 B
Python
#!/usr/bin/python3
|
|
|
|
def __getattr__(name):
|
|
if name == "pgui":
|
|
from .pygame_tools import pgui
|
|
return pgui
|
|
|