From 4fe62d06d199d0319d525ab14e426a233c220932 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Vrhov=C5=A1ek?= Date: Tue, 22 Jul 2025 23:14:23 +0200 Subject: [PATCH] Update src/road/road.zig appended todo to a comment so it'll be easier for me to see in the future that this issue needs fixing --- src/road/road.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/road/road.zig b/src/road/road.zig index 2583f2e..64df54a 100644 --- a/src/road/road.zig +++ b/src/road/road.zig @@ -19,7 +19,7 @@ pub const Road = struct { pub fn confirmRoad(self: *Road, pos: rl.Vector2) void { self.end_point = pos; } - // lets make each road state carry the color with it instead of this + // todo lets make each road state carry the color with it instead of this pub fn setColor(self: *Road, road_state: str.RoadState) void { self.color = switch (road_state) { .valid => .black,