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