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