mirror of
https://github.com/cyberarm/i-mic-fps.git
synced 2025-12-15 07:32:35 +00:00
23 lines
371 B
Ruby
23 lines
371 B
Ruby
# frozen_string_literal: true
|
|
|
|
class IMICFPS
|
|
class Commands
|
|
class DisconnectCommand < CyberarmEngine::Console::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
|