cpd_David_und_Yusuf/lib/player.dart

8 lines
159 B
Dart
Raw Normal View History

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