require "Flag.rb" module RubyMud class Admin < Flag def initialize(owner) super(owner) end end # Note this is the class, not an instance Flags.add(Admin) end #module