cpd_David_und_Yusuf/lib/models/player.dart

10 lines
179 B
Dart

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