Added Ink and ncore to modules

This commit is contained in:
2025-09-30 07:27:58 +02:00
commit 9ec1b9cf82
327 changed files with 14171 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
float foo(Foo f);
struct Foo
{
float some_data;
};
float foo(Foo f)
{
return f.some_data * 2.0f;
}
void vs_main()
{
Foo f;
f.some_data = 4.0f;
float d = foo(f);
}