FRESH AND RAW
[potpourri.git] / include / plugins / graphics / Drawable.h
blob5215a8e6413297087c697d5781e0ca8cb26a3c6e
1 // Copyright 2008 Brian Caine
3 // This file is part of Potpourri.
5 // Potpourri is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
10 // Potpourri is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTIBILITY of FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with Potpourri. If not, see <http://www.gnu.org/licenses/>.
19 // NOTES:
20 // This represents a class that can be drawn on a target
21 // Any specific implementation is up to the graphics plugin
23 #ifndef __DRAWABLE_H
24 #define __DRAWABLE_H
26 #include "Graphics.h"
27 #include "Target.h"
29 #include "../../core/ScriptedClass.h"
31 namespace fragrant
33 class Target;
34 class Drawable
36 public:
37 virtual void draw(Target* target, GraphicsRect* dstrect,
38 GraphicsPair* srcrect, float angle) = 0;
39 virtual ScriptedClass* getScriptObject() = 0;
40 virtual void destroy() = 0;
42 private:
46 #endif