src/Graphics/Drawable.hh
branchnew_graphics
changeset 412 721c60072091
parent 411 106aaf6eadfe
child 423 947ab54de4b7
equal deleted inserted replaced
411:106aaf6eadfe 412:721c60072091
    19 class Drawable {
    19 class Drawable {
    20 public:
    20 public:
    21     /**
    21     /**
    22      * Draw graphics onto the given display
    22      * Draw graphics onto the given display
    23      */
    23      */
    24     virtual void draw (Display *display) = 0;
    24     virtual void draw (Display &display) = 0;
    25 };
    25 };
    26 
    26 
    27 }
    27 }
    28 
    28 
    29 
    29