(svn r10245) -Codechange: added GetName also to all Blitters, instead of only the Factory

This commit is contained in:
truelight
2007-06-21 13:56:59 +00:00
parent e8f9332af9
commit 06fded123a
7 changed files with 17 additions and 0 deletions

View File

@@ -179,6 +179,11 @@ public:
*/
virtual Blitter::PaletteAnimation UsePaletteAnimation() = 0;
/**
* Get the naem of the blitter, the same as the Factory-instance returns.
*/
virtual const char *GetName() = 0;
virtual ~Blitter() { }
};