mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-23 12:46:23 -05:00
39 lines
612 B
C
39 lines
612 B
C
// 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;
|
|
int palIndex;
|
|
};
|
|
|
|
struct PngToGbaOptions {
|
|
int numTiles;
|
|
int bitDepth;
|
|
int metatileWidth;
|
|
int metatileHeight;
|
|
};
|
|
|
|
struct PngToNtrOptions {
|
|
int numTiles;
|
|
int bitDepth;
|
|
int metatileWidth;
|
|
int metatileHeight;
|
|
bool clobberSize;
|
|
bool byteOrder;
|
|
bool version101;
|
|
bool sopc;
|
|
bool scanned;
|
|
};
|
|
|
|
|
|
#endif // OPTIONS_H
|