meat/engine/math/Vec2.ts
2026-08-04 02:09:54 +02:00

2 lines
92 B
TypeScript

/** 2D vector, used for texture coordinates. */
export type Vec2 = { x: number; y: number }