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