1
0
mirror of https://frontier.innolan.net/github/AmigaExamples.git synced 2025-11-24 00:15:53 +00:00
Files
AmigaExamples/tools/mapgen/mapgen.h
2016-04-07 14:21:16 +10:00

26 lines
391 B
C

#pragma once
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
#include <math.h>
#include <getopt.h>
#include <libgen.h>
#include <tmx.h>
#include "utils.h"
#include "file.h"
#define str_bool(b) (b==0? "false": "true")
typedef struct {
int verbose;
char* inputFile;
char** argv;
int bitDepth;
} config_t;
extern config_t config;