Added comments

This commit is contained in:
2026-04-24 23:48:00 +02:00
parent efa14bea7d
commit 064ef7f63e
2 changed files with 20 additions and 1 deletions

View File

@@ -1,9 +1,11 @@
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}