cpd_David_und_Yusuf/lib/models/player.dart

9 lines
142 B
Dart
Raw Normal View History

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