mirror of
https://github.com/neogeek23/Dominion-Strategy-Simulator.git
synced 2026-02-04 19:18:18 +00:00
8 lines
147 B
Python
8 lines
147 B
Python
from player.player import Player
|
|
|
|
|
|
class Human(Player):
|
|
def __str__(self):
|
|
return "Player " + str(self.get_player_index()) + " (human)"
|
|
|