mirror of
https://github.com/cyberarm/i-mic-fps.git
synced 2025-12-15 15:42:35 +00:00
24 lines
368 B
Ruby
24 lines
368 B
Ruby
class IMICFPS
|
|
class Commands
|
|
class HelpCommand < Command
|
|
def initialize
|
|
end
|
|
|
|
def group
|
|
:global
|
|
end
|
|
|
|
def command
|
|
:help
|
|
end
|
|
|
|
def handle(arguments, console)
|
|
console.stdin(usage)
|
|
end
|
|
|
|
def usage
|
|
"HELP\ncommand [arguments]\ncommand subcommand [argument]"
|
|
end
|
|
end
|
|
end
|
|
end |