require "Flag.rb"

module RubyMud

class SeeMainTick < Flag

	# The user can see this flag on himself
	def SeeMainTick.visible?
		return true
	end
	
	# and change it
	def SeeMainTick.changeable?
		return true
	end

	def initialize(owner)
		super(owner)
	end

end

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

end #module