8 lines
177 B
TypeScript
8 lines
177 B
TypeScript
import * as PIXI from 'pixi.js'
|
|
import { StateI } from './states/StateI'
|
|
|
|
export interface ContextI {
|
|
app: PIXI.Application
|
|
pop: () => void
|
|
push: (state: StateI) => void
|
|
} |