17 lines
561 B
Dart
17 lines
561 B
Dart
|
|
// packages/feature_common/lib/feature_common.dart
|
||
|
|
|
||
|
|
// 앱(app_*)이 사용할 공통 화면
|
||
|
|
export 'screens/intro_screen.dart';
|
||
|
|
|
||
|
|
// 게임(feature_game_*) 패키지가 사용할 공통 위젯/화면
|
||
|
|
export 'screens/ranking_screen.dart';
|
||
|
|
export 'screens/settings_screen.dart';
|
||
|
|
export 'widgets/ad_banner_widget.dart';
|
||
|
|
export 'widgets/common_game_shell.dart';
|
||
|
|
|
||
|
|
// (views/intro_view.dart는 intro_screen.dart만 사용하므로 export 불필요)
|
||
|
|
|
||
|
|
export 'models/game_info.dart';
|
||
|
|
export 'models/game_result_args.dart';
|
||
|
|
export 'screens/game_completion_screen.dart';
|