9 lines
280 B
Dart
9 lines
280 B
Dart
/// Entry point for the input handling module of Wolf3D.
|
|
///
|
|
/// This library consolidates access to various input methods, exporting
|
|
/// functionalities from sub-modules like CLI input handling.
|
|
library;
|
|
|
|
export 'src/input/cli_input.dart';
|
|
export 'src/input/wolf_3d_input.dart';
|