13 lines
209 B
C
13 lines
209 B
C
|
#ifndef DRAWABLE_H
|
||
|
#define DRAWABLE_H
|
||
|
|
||
|
#include "Node.h"
|
||
|
|
||
|
class Drawable : virtual public Node {
|
||
|
public:
|
||
|
virtual bool IsDrawable() const {return true;}
|
||
|
virtual void Draw() = 0;
|
||
|
};
|
||
|
|
||
|
#endif /* DRAWABLE_H */
|