require "Flag.rb"

module RubyMud

class Communicable < Flag

	def initialize(owner)
		super(owner)
	end

end

# Note this is the class, not an instance
Flags.add(Communicable)

end #module