外部モジュールでこの静的プロパティにアクセスする方法はありますか? game.ts のクラス Game には実際の静的プロパティが含まれていますが、Game はモジュール GameObjects にアクセスできません。
///<reference path="game.ts" />
export module GameObjects {
export class Player implements GameObject {
color: string = Game.staticProperty;
etc