kalashnikov 0.5.1+1 copy "kalashnikov: ^0.5.1+1" to clipboard
kalashnikov: ^0.5.1+1 copied to clipboard

The Kalashnikov card game (Introduced on the youtube channel Life of Boris)

example/main.dart

import 'package:kalashnikov/gamestate.dart';

main() {
  var state = GameState(
    numberOfPlayers: 2,
  );
  state.dealFromScrap();
  print(state.currentCards);
  state.playerDiscard(0, state.scrap.removeLast());
  state.nextTurn();
  print(state.currentCards);
  state.playerDiscard(0, state.scrap.removeLast());
  state.nextTurn();
  print(state.shelf);
}
1
likes
40
pub points
0%
popularity

Publisher

unverified uploader

The Kalashnikov card game (Introduced on the youtube channel Life of Boris)

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

meta, pedantic

More

Packages that depend on kalashnikov