aboutsummaryrefslogtreecommitdiff
path: root/extMain.sc
diff options
context:
space:
mode:
Diffstat (limited to 'extMain.sc')
-rw-r--r--extMain.sc18
1 files changed, 18 insertions, 0 deletions
diff --git a/extMain.sc b/extMain.sc
new file mode 100644
index 0000000..56ec766
--- /dev/null
+++ b/extMain.sc
@@ -0,0 +1,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 {
+ }
+}