diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-02-13 14:10:15 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-02-13 14:10:15 +0000 |
commit | 821732ebbc2760ec98e0097f38a962c67285d421 (patch) | |
tree | 2e4fbb5b22108bf6d71011541acb927e9f633a5e /src/graphic/graphic.h | |
parent | 6c5351a2cbe2655a6b255cb882ade9e6f988c0ea (diff) | |
download | mana-client-821732ebbc2760ec98e0097f38a962c67285d421.tar.gz mana-client-821732ebbc2760ec98e0097f38a962c67285d421.tar.bz2 mana-client-821732ebbc2760ec98e0097f38a962c67285d421.tar.xz mana-client-821732ebbc2760ec98e0097f38a962c67285d421.zip |
Allow preservation of alpha channel when loading image resources, which is used
to load alpha blended mouse cursor, which is now drawn instead of using the
system cursor.
Diffstat (limited to 'src/graphic/graphic.h')
-rw-r--r-- | src/graphic/graphic.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/graphic/graphic.h b/src/graphic/graphic.h index 0bae4327..3e4bc168 100644 --- a/src/graphic/graphic.h +++ b/src/graphic/graphic.h @@ -152,6 +152,9 @@ class Graphics : public gcn::SDLGraphics { * screen or swapping pages. */ void updateScreen(); + + private: + Image *mouseCursor; }; /** |