有什么想法可以在外部模块中访问此静态属性吗?game.ts 中的 Game 类包含实际的静态属性,但模块 GameObjects 无法访问 Game
///<reference path="game.ts" />
export module GameObjects {
export class Player implements GameObject {
color: string = Game.staticProperty;
etc
有什么想法可以在外部模块中访问此静态属性吗?game.ts 中的 Game 类包含实际的静态属性,但模块 GameObjects 无法访问 Game
///<reference path="game.ts" />
export module GameObjects {
export class Player implements GameObject {
color: string = Game.staticProperty;
etc