Source code for vindinium.models.tavern

__all__ = ['Tavern']

[docs]class Tavern(object): '''A tavern. Attributes: x (int): the tarven position in X. y (int): the tarven position in Y. '''
[docs] def __init__(self, x, y): '''Constructor Args: x (int): the mine position in X. y (int): the mine position in Y. ''' self.x = x self.y = y