import 'package:werwolf/models/role.dart'; class Player { String name; Role role; bool isDead; Player({required this.name, required this.role, required this.isDead}); }