diff options
author | PikalaxALT <PikalaxALT@users.noreply.github.com> | 2020-05-29 16:49:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-29 16:49:46 -0400 |
commit | e0ae696479d629694ce55bffe0fd4599d734fc78 (patch) | |
tree | 94f2457ef39923444d1debbcf82ae958b242ea09 /tools/gbagfx/options.h | |
parent | d528d75af7ab8b9084e08fed7b4bb8616bc80f9c (diff) | |
parent | a4509d06ef13549e45a142cc52a53746140f2c04 (diff) |
Merge pull request #1027 from PikalaxALT/gbagfx_tilemap
Add tilemap rendering capability to gbagfx
Diffstat (limited to 'tools/gbagfx/options.h')
-rw-r--r-- | tools/gbagfx/options.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/gbagfx/options.h b/tools/gbagfx/options.h index 2ff3967a4..3b038f572 100644 --- a/tools/gbagfx/options.h +++ b/tools/gbagfx/options.h @@ -12,6 +12,8 @@ struct GbaToPngOptions { int width; int metatileWidth; int metatileHeight; + char *tilemapFilePath; + bool isAffineMap; }; struct PngToGbaOptions { @@ -19,6 +21,8 @@ struct PngToGbaOptions { int bitDepth; int metatileWidth; int metatileHeight; + char *tilemapFilePath; + bool isAffineMap; }; #endif // OPTIONS_H |