feat(ios): adding iOS build files

This commit is contained in:
Rio Keefe
2025-04-27 17:06:54 +01:00
parent 365ef387dd
commit 385a0cd186
34 changed files with 949 additions and 7 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;
}