indexing description: "Show Closeup Action." author: "Adrian Rabenseifner, radrian@student.ethz.ch" date: "$Date$" revision: "$Revision$" class SHOW_CLOSEUP inherit ACTION redefine perform end create make feature {NONE} -- Initialization make(pcloseup: CLOSEUP) is -- Initialize `Current'. do init_condition_lists closeup := pcloseup end feature -- Access perform(e: EVENT; g: GAME) is -- perform action on given game Object do -- change current closeup g.set_current_closeup(closeup) -- debug output -- io.put_string("action performed: show closeup") -- io.put_new_line end feature {NONE} -- Implementation closeup: CLOSEUP end -- class SHOW_CLOSEUP