9 lines
142 B
Dart
9 lines
142 B
Dart
|
import 'package:werwolf/models/role.dart';
|
||
|
|
||
|
class Player {
|
||
|
String name;
|
||
|
Role role;
|
||
|
|
||
|
Player({required this.name, required this.role});
|
||
|
}
|