반응형
abstract class GameEvent{
}
class StartGameEvent extends GameEvent{
final int attemptsCount;
final int wordLength;
StartGameEvent({required this.attemptsCount, required this.wordLength});
}
class EnterAttemptEvent extends GameEvent{
}
class EnterKeyEvent extends GameEvent{
}
class DeleteKeyEvent extends GameEvent{
}반응형
'새내기 게임 개발자[Unity]' 카테고리의 다른 글
| Flutter Word Game features/game/presentation/widget/attempt_row_widget.dart (0) | 2025.10.19 |
|---|---|
| Flutter Word Game features/game/presentation/bloc/game_state.dart (0) | 2025.10.19 |
| Flutter Word Game features/game/presentation/bloc/game_bloc.dart (0) | 2025.10.19 |
| Flutter Word Game main code (0) | 2025.10.19 |
| Flutter 기본교육 - 부트캠프 - 1 (0) | 2025.10.14 |