mirror of
https://github.com/cyberarm/i-mic-fps.git
synced 2025-12-13 06:42:35 +00:00
23 lines
346 B
Ruby
23 lines
346 B
Ruby
# frozen_string_literal: true
|
|
|
|
class IMICFPS
|
|
class Commands
|
|
class DisconnectCommand < Command
|
|
def group
|
|
:global
|
|
end
|
|
|
|
def command
|
|
:disconnect
|
|
end
|
|
|
|
def handle(arguments, console)
|
|
end
|
|
|
|
def usage
|
|
"Disconnect from currently connected server, if any."
|
|
end
|
|
end
|
|
end
|
|
end
|