squirrel-battle/dungeonbattle/display/display.py

12 lines
312 B
Python
Raw Normal View History

2020-11-06 14:34:24 +00:00
import curses
from .mapdisplay import MapDisplay
class Display:
def __init__(self, game, screen):
self.screen = screen
self.game = game
2020-11-06 15:10:46 +00:00
self.mapDisplay = MapDisplay(game.m, game.settings, curses.LINES, curses.COLS * 4/5)
2020-11-06 14:34:24 +00:00
def refresh(self):
2020-11-06 15:10:46 +00:00
self.mapDisplay.refresh()