18 lines
351 B
Python
18 lines
351 B
Python
"""
|
|
writen by shenjackyuanjie
|
|
mail: 3695888@qq.com
|
|
"""
|
|
|
|
hi = """Difficult Rocket is writen by shenjackyuanjie
|
|
mail: 3695888@qq.com or shyj3695888@163.com
|
|
QQ: 3695888"""
|
|
|
|
if __name__ == '__main__':
|
|
import sys
|
|
sys.path.append('./')
|
|
sys.path.append('./bin/libs')
|
|
from bin import main
|
|
print(hi)
|
|
game = main.Game()
|
|
game.start()
|