Skip to content

Instantly share code, notes, and snippets.

View oddurmagg's full-sized avatar

Oddur Magnusson oddurmagg

  • Klang Games
  • Berlin
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()