7 lines
218 B
Dart
7 lines
218 B
Dart
class BotMode {
|
|
static const direct = "direct";
|
|
static const discussion = "discussion";
|
|
static const custom = "custom";
|
|
static const storyGame = "story_game";
|
|
static const textAdventure = "text_adventure";
|
|
}
|