Tested program as a module

This commit is contained in:
Timothy GFO 2023-09-15 12:53:53 -04:00
parent b52228eeb4
commit 7439c11168
4 changed files with 142 additions and 95 deletions

27
testing_grounds.py Normal file
View file

@ -0,0 +1,27 @@
# A Mega Man Maker MMLV Library/Module By Timothy J. (GameFeverOnline, www.youtube.com/@GameFeverOnline)
import mmlv_library as mmlv
"""
_|_ _ __|_o._ _ _ .__ ._ _| _
|_(/__> |_|| |(_| (_||(_)|_|| |(_|_>
_| _|
"""
mmlv.read_file()
print(mmlv.get_user())
mmlv.set_level_name("sample")
mmlv.set_user("Python")
count = 0
#for column in range(max_y+1):
# count += 1
#
# for tile in range(max_x+1):
# count += 1
# set_tile(tile,column)
#set_room_active(max_room_x,max_room_y)
#set_tile(1,1)
print(count)
mmlv.write_changes("sample.mmlv")
#del_tile(1,1)