From 31ce3c5fd0300aac1e86bced1efc5f9ec94bdb6b Mon Sep 17 00:00:00 2001 From: Juan Linietsky Date: Thu, 13 Mar 2014 22:57:24 -0300 Subject: -fix bug in cache for atlas import/export -fix some menus -fixed bug in out transition curves -detect and remove file:/// in collada -remove multiscript for now -remove dependencies on mouse in OS, moved to Input -avoid fscache from screwing up (fix might make it slower, but it works) -funcref was missing, it's there now --- modules/multiscript/register_types.cpp | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 modules/multiscript/register_types.cpp (limited to 'modules/multiscript/register_types.cpp') diff --git a/modules/multiscript/register_types.cpp b/modules/multiscript/register_types.cpp deleted file mode 100644 index 4b25656723..0000000000 --- a/modules/multiscript/register_types.cpp +++ /dev/null @@ -1,32 +0,0 @@ -/*************************************************/ -/* register_script_types.cpp */ -/*************************************************/ -/* This file is part of: */ -/* GODOT ENGINE */ -/*************************************************/ -/* Source code within this file is: */ -/* (c) 2007-2010 Juan Linietsky, Ariel Manzur */ -/* All Rights Reserved. */ -/*************************************************/ - -#include "register_types.h" - -#include "multi_script.h" -#include "io/resource_loader.h" - -static MultiScriptLanguage *script_multi_script=NULL; - -void register_multiscript_types() { - - - script_multi_script = memnew( MultiScriptLanguage ); - ScriptServer::register_language(script_multi_script); - ObjectTypeDB::register_type(); - - -} -void unregister_multiscript_types() { - - if (script_multi_script); - memdelete(script_multi_script); -} -- cgit v1.2.3