tomo/examples/game/box.tm
2024-09-08 20:25:06 -04:00

10 lines
238 B
Tcl

# Defines a struct representing boxes on the terrain
use vectors
use ./world.tm
use ./color.tm
struct Box(pos:Vec2, size=Vec2(50, 50), color=Color.GRAY, blocking=yes):
func draw(b:Box):
b.color:draw_rectangle(b.pos, b.size)