Looks like I fixed some spacing at some point. Moved Game_map and render_functions to the parent directory. For some reason they were in the venv folder. Added requirements.txt. Going to begin updating code to use latest version of tcod.
This commit is contained in:
@@ -8,6 +8,7 @@ from input_handlers import handle_keys
|
||||
def main():
|
||||
screen_width = 80
|
||||
screen_height = 50
|
||||
|
||||
map_width = 80
|
||||
map_height = 50
|
||||
|
||||
@@ -30,8 +31,8 @@ def main():
|
||||
con = tc.console_new(screen_width, screen_height)
|
||||
|
||||
game_map = GameMap(map_width, map_height)
|
||||
#game_map.make_map()
|
||||
game_map.make_map(max_rooms, room_min_size, room_max_size, map_width, map_height, player)
|
||||
|
||||
key = tc.Key()
|
||||
mouse = tc.Mouse()
|
||||
|
||||
|
||||
5
requirements.txt
Normal file
5
requirements.txt
Normal file
@@ -0,0 +1,5 @@
|
||||
cffi==1.14.5
|
||||
numpy==1.20.3
|
||||
pycparser==2.20
|
||||
tcod==12.5.0
|
||||
typing-extensions==3.10.0.0
|
||||
Reference in New Issue
Block a user