Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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
share|improve this question

1 Answer

up vote 2 down vote accepted

Your code uses external modules and then specifying the variable to which the module is loaded is just necessary. Please take a look at the answers to this question to see what's the difference.

share|improve this answer
thanks, if I remove the export module GameObjects { then I don't get the autocompletion of player in: player: GameObjects..Player; but it still works! – Nikos Dec 11 '12 at 13:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.