예제 #1
0
파일: launch.py 프로젝트: green0range/Wires
def fs():
    initdir = os.path.join("assets", "maps")
    file = tkFileDialog.askopenfilename(
        initialdir=initdir, filetypes=[("Wires Map", ".wrm"), ("Wires Map Pack (Zipped)", ".zip")]
    )
    root.start(mf=file)  # , s=Screen, full=Full)
    w.destroy()
예제 #2
0
파일: main.py 프로젝트: Gururaj/Experiments
__author__ = 'gururaj'

import root

if __name__ == "__main__":
    root.start()
예제 #3
0
파일: launch.py 프로젝트: green0range/Wires
def story():
    story_path = os.path.join("assets", "maps", "working_map", "1.wrm")  # TODO: change back to story after testing
    root.import_pack("/home/william/Documents/Wires/repo/wires/assets/maps/story.zip")
    root.start(mf=story_path)  # , s=Screen, full=Full)
    w.destroy()