mirror of
https://gitlab.com/Nanolx/qwad.git
synced 2024-11-01 00:25:06 +01:00
22 lines
380 B
Python
22 lines
380 B
Python
__all__ = []
|
|
|
|
from common import *
|
|
from formats import *
|
|
from title import *
|
|
from disc import *
|
|
from archive import *
|
|
from export import *
|
|
from compression import *
|
|
from nand import *
|
|
from headers import *
|
|
from bns import *
|
|
|
|
if (__name__ == "__main__"):
|
|
Crypto()
|
|
TMD()
|
|
Ticket()
|
|
|
|
#insert non-dependant check code here
|
|
|
|
print("\nAll Wii.py components loaded sucessfully!\n")
|