mirror of
https://github.com/grp/Wii.py.git
synced 2025-06-18 14:55:35 -04:00
22 lines
382 B
Python
22 lines
382 B
Python
__all__ = []
|
|
|
|
from common import *
|
|
from formats import *
|
|
from banner import *
|
|
from title import *
|
|
from disc import *
|
|
from image import *
|
|
from archive import *
|
|
from export import *
|
|
from compression import *
|
|
from nand import *
|
|
|
|
if (__name__ == "__main__"):
|
|
Crypto()
|
|
TMD()
|
|
Ticket()
|
|
|
|
#insert non-dependant check code here
|
|
|
|
print ("\nAll Wii.py components loaded sucessfully!\n")
|