Actually write the damn tool

This commit is contained in:
2024-02-04 22:47:17 -06:00
parent fc0202ec46
commit 6193299dfb
7 changed files with 44 additions and 2 deletions

12
renpy-filepicker-saver.c Normal file
View File

@ -0,0 +1,12 @@
#include <stdio.h>
#include "./tinyfiledialogs/tinyfiledialogs.h"
int main () {
char* filename = tinyfd_saveFileDialog("Please select an export location",
"wani-export.zip",
0,
NULL,
NULL);
printf("%s\n", filename);
}