diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/Makefile.am | 2 | ||||
-rw-r--r-- | include/sprite.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/Makefile.am b/include/Makefile.am index 60c38b6..1e67880 100644 --- a/include/Makefile.am +++ b/include/Makefile.am @@ -1,5 +1,5 @@ pkginclude_HEADERS = \ engine.h glbase.h glfont.h glshape.h glwidgets.h sprite.h \ -base.h font.h shape.h mcolor.h glsprite.h +base.h font.h shape.h mcolor.h glsprite.h texture.h noinst_HEADERS = gettext.h diff --git a/include/sprite.h b/include/sprite.h index c9e6653..feb9e51 100644 --- a/include/sprite.h +++ b/include/sprite.h @@ -13,7 +13,7 @@ namespace mogltk { Sprite(Handle *, int, int); Sprite(Uint8 *, int, int); virtual ~Sprite(); - void draw(int, int, ColorP = WHITE); + virtual void draw(int, int, ColorP = WHITE); protected: void Bind(); int GetSX(); |