this repo has no description
1//--------------------------------------------------------------------------------------------------
2//
3// SIMD math library for game developers
4// https://github.com/michal-z/zig-gamedev/tree/main/libs/zmath
5//
6// See zmath.zig for more details.
7// See util.zig for additional functionality.
8//
9//--------------------------------------------------------------------------------------------------
10pub usingnamespace @import("zmath.zig");
11pub const util = @import("util.zig");
12
13// ensure transitive closure of test coverage
14comptime {
15 _ = util;
16}