diff options
author | PikalaxALT <PikalaxALT@gmail.com> | 2020-04-15 20:20:40 -0400 |
---|---|---|
committer | PikalaxALT <PikalaxALT@gmail.com> | 2020-04-15 20:20:40 -0400 |
commit | 09d866602ecc76fdc5e9be9e3bd1ae0b8547ff13 (patch) | |
tree | 312c771cf265503718f3e8c2eb42b92708c55f36 /tools/nitrogfx/options.h | |
parent | b661c7888c57280a19801b320cf7860e6555f1d3 (diff) |
ROM titles
Diffstat (limited to 'tools/nitrogfx/options.h')
-rw-r--r-- | tools/nitrogfx/options.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tools/nitrogfx/options.h b/tools/nitrogfx/options.h new file mode 100644 index 00000000..2ff3967a --- /dev/null +++ b/tools/nitrogfx/options.h @@ -0,0 +1,24 @@ +// Copyright (c) 2018 huderlem + +#ifndef OPTIONS_H +#define OPTIONS_H + +#include <stdbool.h> + +struct GbaToPngOptions { + char *paletteFilePath; + int bitDepth; + bool hasTransparency; + int width; + int metatileWidth; + int metatileHeight; +}; + +struct PngToGbaOptions { + int numTiles; + int bitDepth; + int metatileWidth; + int metatileHeight; +}; + +#endif // OPTIONS_H |