aboutsummaryrefslogtreecommitdiff
path: root/extMain.sc
blob: 56ec7660f97cc093d9c0d7293400c280b11674be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
+ Main {
	startup {
		super.startup;
		// set the 's' interpreter variable to the default server.
		interpreter.s = Server.local;
		Server.local.options.numOutputBusChannels = 8;
		Server.local.options.numInputBusChannels = 8;
		Server.local.options.memSize = 8192;
	}

	shutdown { // at recompile, quit
		//Server.quitAll;
		//super.shutdown;
	}
	
	newSCWindow {
	}
}