Files
Pokemon-Firered/tools/gbagfx/options.h
T
PikalaxALT d141011e7f Track tools
2018-12-20 20:43:40 -05:00

27 lines
439 B
C

// Copyright (c) 2018 huderlem
#ifndef OPTIONS_H
#define OPTIONS_H
#include <stdbool.h>
struct GbaToPngOptions {
char *paletteFilePath;
char *tilemapFilePath;
int bitDepth;
bool hasTransparency;
int width;
int metatileWidth;
int metatileHeight;
};
struct PngToGbaOptions {
char *tilemapFilePath;
int numTiles;
int bitDepth;
int metatileWidth;
int metatileHeight;
};
#endif // OPTIONS_H