mirror of
https://gitlab.com/GameFeverOnline/py-mmlv.git
synced 2025-12-18 17:57:42 -04:00
Tested program as a module
This commit is contained in:
parent
b52228eeb4
commit
7439c11168
4 changed files with 142 additions and 95 deletions
27
testing_grounds.py
Normal file
27
testing_grounds.py
Normal 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)
|
||||
Loading…
Add table
Add a link
Reference in a new issue