00001 // ///////////////////////////////////////////////////////////////////////////// 00002 // 00003 // Name: asProcessors.cpp 00004 // Author: Michael Bartsch (ZCCdark203) 00005 // 00006 // Desc : Binds all AssetProcessors to AngelScript. 00007 // 00008 // License: Copyright (C) 2009 Michael Bartsch and Contributors 00009 // 00010 // This program is free software: you can redistribute it 00011 // and/or modify it under the terms of the zlib/libpng License. 00012 // See main.cpp for conditions of distribution and use. 00013 // 00014 // ///////////////////////////////////////////////////////////////////////////// 00015 00016 // Include files 00017 #include "asProcessors.h" 00018 00019 #ifdef __COMPILE_WITH_ANGELSCRIPT__ 00020 00021 #include "asEntityProcessor.h" 00022 #include "asScriptProcessor.h" 00023 00024 00026 void bindAssetProcessors(asIScriptEngine *engine) 00027 { 00028 bindEntityProcessor(engine); 00029 bindScriptProcessor(engine); 00030 } 00031 00032 #endif // __COMPILE_WITH_ANGELSCRIPT__ 00033 00034 // End of File 00035