# player.py
# Prof. Lillian Lee (LJL2)
# Feb 27, 2018

"""The player class, intended for A2 simulation of a public goods game."""


class Player():
    """Attributes:
        holdings [non-negative int]: how many tokens this Player has."""

    def __init__(self, start):
        """A new Player with holdings of `start` tokens."""
        self.holdings = start