dart_console_game_komoliddin 0.0.1
dart_console_game_komoliddin: ^0.0.1 copied to clipboard
Console-based mini games package for Dart. Includes Guess the Number with levels and retry option.
🎮 dart_console_game_komoliddin #
A Dart package with simple console games.
Currently includes Guess the Number with two levels and retry option.
Features #
- Console-based ASCII interaction
- Two levels of difficulty
- Retry option after game over
Usage #
import 'package:dart_console_game_komoliddin/dart_console_game_komoliddin.dart';
void main() {
final game = GuessNumberGame();
game.start();
}