From 846784f652e9b30b67c04bfa800be1448c8a15e7 Mon Sep 17 00:00:00 2001 From: Aaron Marks Date: Tue, 10 May 2005 11:57:53 +0000 Subject: Updated scripting interface & added some class documentation. - Updated Squirrel scripting interface. - Added registerFunction which will register a function for the specified scripting VM. --- src/main.cpp | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/main.cpp') diff --git a/src/main.cpp b/src/main.cpp index d30501b..db9b6ae 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -106,14 +106,10 @@ void initialize() // Initialize scripting subsystem #ifdef SCRIPT_SUPPORT - logger->log("Script Language %s", scriptLanguage.c_str()); if (scriptLanguage == "squirrel") - { script = new ScriptSquirrel("main.nut"); - script->init(); - } #endif } -- cgit