2024-05-10 22:00:14 +02:00
|
|
|
import 'package:werwolf/models/role.dart';
|
|
|
|
|
|
|
|
class Player {
|
|
|
|
String name;
|
|
|
|
Role role;
|
2024-06-07 20:02:06 +02:00
|
|
|
bool isDead;
|
2024-05-10 22:00:14 +02:00
|
|
|
|
2024-06-07 20:02:06 +02:00
|
|
|
Player({required this.name, required this.role, required this.isDead});
|
2024-05-10 22:00:14 +02:00
|
|
|
}
|