aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/rtw/rand.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/rtw/rand.zig')
-rw-r--r--src/rtw/rand.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rtw/rand.zig b/src/rtw/rand.zig
index 47a8d61..dcc2aa1 100644
--- a/src/rtw/rand.zig
+++ b/src/rtw/rand.zig
@@ -2,7 +2,7 @@ const std = @import("std");
const Vec3 = @import("vec.zig").Vec3;
-pub const Random = std.rand.Random;
+pub const Random = std.Random;
// [min, max)
pub fn randomInt(comptime T: type, rand: Random, min: T, max: T) T {