UNPKG

pixi-fusion

Version:

This module offers a set of common components needed for playing games.

10 lines (9 loc) 267 B
import { Application } from "pixi.js"; export type WorldContextValue = { readonly size: { width: number; height: number; }; application: Application | null; }; export declare const WorldContext: import("react").Context<WorldContextValue>;