Initial commit

This commit is contained in:
2026-04-24 14:22:25 +02:00
commit 91e205869c
5 changed files with 183 additions and 0 deletions

19
common/constants.odin Normal file
View File

@@ -0,0 +1,19 @@
package common
import rl "vendor:raylib"
WIDTH :: 1920
HEIGHT :: 1080
MONITOR :: 0
ROAD_SIZE :: 20
NODE_RADIUS :: 20
NODE_SNAP_RADIUS :: 3
TEXT_SIZE :: 50
ROAD_COLOUR :: rl.BLACK
NODE_DONE_COLOUR :: rl.BROWN
NODE_BUILD_COLOUR :: rl.GOLD
NODE_CURSOR_COLOUR :: rl.BLUE
BACKGROUND_COLOUR :: rl.LIGHTGRAY