diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-05-12 15:42:09 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-05-12 15:42:09 +0300 |
commit | db6b712e4169d80f8f2c84a0efbc553d2058c191 (patch) | |
tree | d2686ac79474c32d81da85be6f83385c74386a72 /src/being/compoundsprite.h | |
parent | 11a49b50fb6c2ff20f62f39d8606f54770b6a295 (diff) | |
download | mv-db6b712e4169d80f8f2c84a0efbc553d2058c191.tar.gz mv-db6b712e4169d80f8f2c84a0efbc553d2058c191.tar.bz2 mv-db6b712e4169d80f8f2c84a0efbc553d2058c191.tar.xz mv-db6b712e4169d80f8f2c84a0efbc553d2058c191.zip |
Extract compountitem into separate file.
Diffstat (limited to 'src/being/compoundsprite.h')
-rw-r--r-- | src/being/compoundsprite.h | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/src/being/compoundsprite.h b/src/being/compoundsprite.h index 20f5a376a..7e983ad2d 100644 --- a/src/being/compoundsprite.h +++ b/src/being/compoundsprite.h @@ -24,6 +24,8 @@ #include "sprite.h" +#include "being/compounditem.h" + #include <list> #include <vector> @@ -31,22 +33,6 @@ class Image; -typedef std::list <const void*> VectorPointers; - -class CompoundItem final -{ - public: - CompoundItem(); - - A_DELETE_COPY(CompoundItem) - - ~CompoundItem(); - - VectorPointers data; - Image *image; - Image *alphaImage; -}; - class CompoundSprite : public Sprite { public: |