diff options
author | pixel <pixel> | 2003-04-14 15:51:42 +0000 |
---|---|---|
committer | pixel <pixel> | 2003-04-14 15:51:42 +0000 |
commit | e318be8501559a9e53aa9990bf7e07b00c00ee51 (patch) | |
tree | e2df61a572721612437ce6fa81cabc06408a4ed8 /include | |
parent | ebc6bb16f895b7c192b9f4c42d1fc4feb41e271c (diff) |
Shapes fixed
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; }; }; |