Poke_Transporter_GB/tools/data-generator/include/common.h
The Gears of Progress ba1a075701 Adding PCCS
2025-10-12 15:08:33 -04:00

10 lines
264 B
C++

#ifndef _COMMON_H
#define _COMMON_H
#include <cstdint>
#include <cstddef>
void writeTable(const char *input_path, const char *output_path, const char *filename, const char *buffer, size_t buffer_size);
void generate_pokemon_data(const char *output_path);
#endif