// FILE: drawing.h // #if !defined(_DRAWING_H_) #define _DRAWING_H_ #include "canvas.h" #include "drawable_list.h" // GIVEN A LIST OF DRAWABLES // THE STATIC METHOD // - SORTS THE FIGURES BY LAYER // - RENDERS THE FIGURES ON THE CANVAS class drawing { public: static void render(drawable_list&, canvas&); }; #endif