CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
ProdigyPNP

CoCalc is a real-time collaborative commercial alternative to JupyterHub and Overleaf that provides Jupyter Notebooks, LaTeX documents, and SageMath.

GitHub Repository: ProdigyPNP/ProdigyMathGameHacking
Path: blob/master/typings/prodigy.d.ts
Views: 713
1
import { Game } from "./game";
2
import { Player } from "./player";
3
import { DebugMisc } from "./debugMisc";
4
import { TODO } from "./util";
5
import { Open } from "./open";
6
import { GameContainer } from "./gameContainer";
7
8
export declare interface Prodigy {
9
version: string;
10
game: Game;
11
// debugMisc: DebugMisc;
12
world: TODO;
13
giftBoxController: TODO;
14
open: Open;
15
// debugQuests: TODO;
16
user: TODO;
17
pvpNetworkHandler: TODO;
18
// network: TODO;
19
classModeController: TODO;
20
gameContainer: GameContainer;
21
dialogue: TODO;
22
notifications: TODO;
23
battle: TODO;
24
}
25