require "Commands.rb"

module RubyMud

class Command
	
	def initialize()
		# Add it to the command lists
		Commands.add(self)
	end
	
	def words
		return [""]
	end

	def canUse?(object)
		return true
	end
	
	def execute(clientConnection,text)
	end
end

end