mirror of
https://github.com/cyberarm/i-mic-fps.git
synced 2025-12-15 15:42:35 +00:00
20 lines
314 B
Ruby
20 lines
314 B
Ruby
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 |