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