UNPKG

pixi-fusion

Version:

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

7 lines (6 loc) 240 B
import { Container } from "pixi.js"; export type LayerContextValue = { addObject: (body: Container) => void; removeObject: (body: Container) => void; }; export declare const LayerContext: import("react").Context<LayerContextValue>;