clay/bindings/jai/module.jai

13 lines
165 B
Plaintext
Raw Normal View History

2024-12-22 17:20:31 +00:00
Vector2 :: Math.Vector2;
Color :: Math.Vector4;
#scope_module
Math :: #import "Math";
2024-12-22 10:49:53 +00:00
#if OS == .WINDOWS {
#load "windows.jai";
} else {
2024-12-22 17:20:31 +00:00
assert(false);
2024-12-22 10:49:53 +00:00
}