UNPKG

pixi-game-camera

Version:

A flexible and non-opinionated way to add camera effects to your PIXI application via containers.

8 lines (7 loc) 145 B
/** * Defines the structure of an object that acts as a (x, y) definition. */ export interface Vector { x: number; y: number; }