class Player {
String name;
String role;
bool isRevealed;
Player({required this.name, this.role = 'Dorfbewohner', this.isRevealed = false});
}