src/Graphics/Drawable.hh
author nireco
Sat, 31 Jan 2009 15:21:57 +0200
changeset 445 94dfb47036ef
parent 424 f337a86d144e
permissions -rw-r--r--
explosion animation

#ifndef GRAPHICS_DRAWABLE_HH
#define GRAPHICS_DRAWABLE_HH

namespace graphics
{

class Drawable;

}

#include "Display.hh"

namespace graphics
{

/**
 * Abstract interface class to define something that's drawable
 */
class Drawable {
public:
    /**
     * Draw graphics onto the given display
     */
    virtual void draw (Display &display) = 0;
};

}


#endif