Removed lscript_compile, lscript_execute, and lscript_library dependencies from newview.

This commit is contained in:
Shyotl
2012-09-24 04:08:57 -05:00
parent 9019a1eb23
commit 16216b2ed0
13 changed files with 1483 additions and 14 deletions

View File

@@ -62,6 +62,7 @@ class LLScriptEdCore : public LLPanel, public LLEventTimer
friend class LLLiveLSLEditor;
public:
static void parseFunctions(const std::string& filename);
LLScriptEdCore(
const std::string& name,
const LLRect& rect,
@@ -169,6 +170,14 @@ private:
LLLiveLSLFile* mLiveFile;
LLUUID mObjectUUID;
LLUUID mItemUUID;
struct LSLFunctionProps
{
std::string mName;
F32 mSleepTime;
bool mGodOnly;
};
static std::vector<LSLFunctionProps> mParsedFunctions;
};