diff options
Diffstat (limited to 'src/tileset.h')
-rw-r--r-- | src/tileset.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/tileset.h b/src/tileset.h index 56bc4547..387222b3 100644 --- a/src/tileset.h +++ b/src/tileset.h @@ -30,11 +30,8 @@ class Tileset : public ImageSet { public: - /** - * Constructor. - */ - Tileset(Image *img, int w, int h, int firstGid): - ImageSet(img, w, h), + Tileset(Image *img, int w, int h, int firstGid, int margin, int spacing): + ImageSet(img, w, h, margin, spacing), mFirstGid(firstGid) { } |