ios version

This commit is contained in:
04041b
2024-12-28 19:40:32 -08:00
parent 571920ab83
commit 72c5665fab
33 changed files with 951 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
#pragma once
namespace ffi {
extern "C" {
void start_app();
}
}

View File

@@ -0,0 +1,6 @@
#include "bindings/bindings.h"
int main(int argc, char * argv[]) {
ffi::start_app();
return 0;
}