mirror of
https://github.com/cyberarm/i-mic-fps.git
synced 2025-12-15 23:52:35 +00:00
Added connect and disconnect stub commands, added autocomplete to help command.
This commit is contained in:
20
lib/ui/commands/connect_command.rb
Normal file
20
lib/ui/commands/connect_command.rb
Normal file
@@ -0,0 +1,20 @@
|
||||
class IMICFPS
|
||||
class Commands
|
||||
class ConnectCommand < Command
|
||||
def group
|
||||
:global
|
||||
end
|
||||
|
||||
def command
|
||||
:connect
|
||||
end
|
||||
|
||||
def handle(arguments, console)
|
||||
end
|
||||
|
||||
def usage
|
||||
"Connect to a server.\n#{Style.highlight("connect")} #{Style.notice("[example.com:56789]")}"
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user