Exemple #1
0
 private Scene(Form client, StartupDel startupCode) : this(client)
 {
     this.StartupCode = startupCode;
 }
Exemple #2
0
    public static void Run(Form client, StartupDel startupCode)
    {
        Scene.Instance = new Scene(client, startupCode);

        Scene.Instance.StartupCode.Invoke();
    }