Files
odin-base-road-network/infrastructure/road.odin
2026-04-24 23:48:00 +02:00

13 lines
209 B
Odin

package infrastructure
Road :: struct {
// Index to nodes that limit the road
nodes: [2]u32,
}
// Road Initialisation
road_init :: proc(start: u32, end: u32) -> Road {
return {
nodes = {start, end}
}
}