Beispiel #1
0
    /* INTERNALS */


    /* CONSTRUCTOR */
    public USystem(UControl new_control, UDifficulty new_difficulty, UStage new_stage)
    {
        control    = new_control;
        difficulty = new_difficulty;
        stage      = new_stage;

        //Adding static references
        USystem.Instances.Add(this);
        USystem.Current = this;
    }
Beispiel #2
0
 private static void Init()
 {
     USystem           = new USystem();
     ControlerWindow   = new ControlerWindow();
     UserCreatorWindow = new UserCreatorWindow();
 }
Beispiel #3
0
 void Start()
 {
     sys = new USystem(new UControl(), new UDifficulty(), new UStage(6));
 }