matchmaker 0.3.0 copy "matchmaker: ^0.3.0" to clipboard
matchmaker: ^0.3.0 copied to clipboard

A pure Dart package for skill rating and matchmaking systems. Matchmaker provides battle-tested rating algorithms for competitive games and multiplayer applications.

example/matchmaker_example.dart

import 'elo_example.dart' as elo;
import 'glicko2_example.dart' as glicko2;
import 'trueskill_example.dart' as trueskill;

/// Runs all rating system examples.
///
/// You can also run each example individually:
/// - `dart run example/elo_example.dart`
/// - `dart run example/glicko2_example.dart`
/// - `dart run example/trueskill_example.dart`
void main() {
  print('=== Matchmaker: Rating Systems Examples ===\n');

  glicko2.main();
  elo.main();
  trueskill.main();
}
1
likes
160
points
122
downloads

Publisher

unverified uploader

Weekly Downloads

A pure Dart package for skill rating and matchmaking systems. Matchmaker provides battle-tested rating algorithms for competitive games and multiplayer applications.

Repository (GitHub)
View/report issues
Contributing

Topics

#rating #matchmaking #glicko #elo #trueskill

Documentation

API reference

License

MIT (license)

More

Packages that depend on matchmaker