diff options
Diffstat (limited to 'src/resources/atlasmanager.h')
-rw-r--r-- | src/resources/atlasmanager.h | 23 |
1 files changed, 1 insertions, 22 deletions
diff --git a/src/resources/atlasmanager.h b/src/resources/atlasmanager.h index 8fb2d6dcc..0cb7b98b5 100644 --- a/src/resources/atlasmanager.h +++ b/src/resources/atlasmanager.h @@ -33,28 +33,7 @@ class AtlasResource; class Resource; struct AtlasItem; - -struct TextureAtlas final -{ - TextureAtlas() : - name(), - atlasImage(nullptr), - surface(nullptr), - width(0), - height(0), - items() - { - } - - A_DELETE_COPY(TextureAtlas) - - std::string name; - Image *atlasImage; - SDL_Surface *surface; - int width; - int height; - std::vector <AtlasItem*> items; -}; +struct TextureAtlas; class AtlasManager final { |