aboutsummaryrefslogtreecommitdiff
path: root/extMain.sc
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2008-02-08 13:52:00 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2008-02-08 13:52:00 +0000
commitd510556ed2617b112c58738248b59d122c5173d5 (patch)
treefc9c4240fab7150d13114041b0529c26090d4105 /extMain.sc
svn path=/trunk/externals/supercollider/; revision=9414
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 {
+ }
+}