🎮 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();
}