squirrel-battle/dungeonbattle/display/display.py

11 lines
296 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
self.mapDisplay = MapDisplay(game.m, curses.LINES, curses.COLS * 4/5)
def refresh(self):
self.mapDisplay.refresh()