indexing description: "[ This abtract class represents objects that habe a dimension: width, height and a screen position: x, y This class is part of the XAE Extended Adventure Engine Project. ]" author: "Adrian Rabenseifner, radrian@student.ethz.ch" date: "$Date$" revision: "$Revision$" class DIMENSIONED feature -- Access set_position(px, py: INTEGER) is -- set position of this object do x := px y := py end -- screen position x, y: INTEGER set_demension(w, h: INTEGER) is -- set position of this object do width := w height := h end -- dimension width, height: INTEGER end -- class DIMENSIONED