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 StageContextValue = { addObject: (body: Container) => void; removeObject: (body: Container) => void; }; export declare const StageContext: import("react").Context<StageContextValue>;