diff options
Diffstat (limited to 'src/render/graphics.h')
-rw-r--r-- | src/render/graphics.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/render/graphics.h b/src/render/graphics.h index 58e08888a..90029717e 100644 --- a/src/render/graphics.h +++ b/src/render/graphics.h @@ -295,7 +295,7 @@ class Graphics const std::string &getName() const A_WARN_UNUSED { return mName; } - virtual void initArrays() + virtual void initArrays(const int vertCount A_UNUSED) { } virtual void setColor(const Color &color) @@ -447,6 +447,9 @@ class Graphics virtual void clearScreen() const { } + virtual void deleteArrays() + { } + int mWidth; int mHeight; int mActualWidth; |