I'm trying to Reference a Class in an exported module, how come I have to decare GameObjects twice like this:
GameObjects.GameObjects.Player
instead of like this:
GameObjects.Player in the below code
import GameObjects = module("GameObjects")
class game {
player: GameObjects.GameObjects.Player;
etc
and in another file
export module GameObjects {
// Class
export class Player {
etc