mirror of
https://github.com/chenasraf/mudblock.git
synced 2026-05-18 01:48:57 +00:00
21 lines
419 B
Dart
21 lines
419 B
Dart
class BuiltinCommand {
|
|
static help() {
|
|
const sep =
|
|
'--------------------------------------------------------------------------------';
|
|
final year = DateTime.now().year;
|
|
return '''
|
|
$sep
|
|
Mudblock - Help
|
|
$sep
|
|
|
|
Mudblock is a cross-platform MUD client.
|
|
See more information at https://github.com/chenasraf/mudblock
|
|
|
|
$sep
|
|
Developed by Chen Asraf
|
|
Copyright © $year - All Rights Reserved
|
|
$sep
|
|
''';
|
|
}
|
|
}
|