UNPKG

@beetpx/beetpx

Version:

A TypeScript framework for pixel art browser games.

10 lines 259 B
import { BpxVector2d } from "../misc/Vector2d"; export function adjacent4() { return [ BpxVector2d.of(-1, 0), BpxVector2d.of(0, -1), BpxVector2d.of(1, 0), BpxVector2d.of(0, 1), ]; } //# sourceMappingURL=adjacent4.js.map