This commit is contained in:
nub31
2026-02-11 21:47:51 +01:00
parent 0a5b39b217
commit 21a095f691
4 changed files with 284 additions and 166 deletions

View File

@@ -1,5 +1,10 @@
module math
struct vec2 { x: i32 y: i32 }
struct vec3 { x: i32 y: i32 z: i32 }
struct color { r: i32 g: i32 b: i32 a: i32 }
struct example { a: math::vec2 b: math::vec3 c: math::color }
export func add(a: i32 b: i32): i32
{
return a + b