Example #1
0
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()
Example #2
0
__author__ = 'gururaj'

import root

if __name__ == "__main__":
    root.start()
Example #3
0
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()