Skip to content

Instantly share code, notes, and snippets.

View frouo's full-sized avatar
🇫🇷

François Rouault frouo

🇫🇷
View GitHub Profile
@brandenr
brandenr / gist:5118113
Last active March 10, 2020 18:57
iOS Unity Plugin
extern "C"
{
int _pow2(int x)
{
// Just a simple example of returning an int value
return x * x;
}
// Returns a char* (a string to Unity)
char* _helloWorldString()