Additional comments

This commit is contained in:
2026-04-25 02:32:09 +02:00
parent c14ac533dc
commit ac78f526df
3 changed files with 23 additions and 0 deletions

View File

@@ -2,7 +2,10 @@ package common
import rl "vendor:raylib"
// Stores data about intersections
Intersection_Data :: struct {
// Index of the road that is intersected
road: u32,
// The exact point of intersection
point: rl.Vector2,
}