diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/glshape.h | 1 | ||||
-rw-r--r-- | include/shape.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/include/glshape.h b/include/glshape.h index fb5e1d9..aad9f16 100644 --- a/include/glshape.h +++ b/include/glshape.h @@ -25,6 +25,7 @@ namespace mogltk { virtual void tbox(texture *, int x1, int y1, int x2, int y2, ColorP, ColorP, ColorP, ColorP, int tx = 0, int ty = 0, double = 1.0); virtual void tbox(texture *, int x1, int y1, int x2, int y2, ColorP, ColorP, ColorP, ColorP, int tx1, int ty1, int tx2, int ty2); virtual void fdraw(fill * f, ColorP = WHITE, int sx = 0, int sy = 0); + virtual void sdraw(fill * f, ColorP = WHITE, int sx = 0, int sy = 0); private: bool Enter(bool); virtual bool Enter(); diff --git a/include/shape.h b/include/shape.h index 756f7d0..fef6bb1 100644 --- a/include/shape.h +++ b/include/shape.h @@ -167,6 +167,7 @@ namespace mogltk { fill * f; texture * t; ColorP c; + shape * sh; }; }; |