File diff r27368:4f131cee1b81 → r27369:d93808e810cd
src/script/script_info.hpp
Show inline comments
 
@@ -31,11 +31,9 @@ class ScriptInfo : public SimpleCountedO
 
public:
 
	ScriptInfo() :
 
		engine(nullptr),
 
		SQ_instance(nullptr),
 
		version(0),
 
		scanner(nullptr)
 
	{}
 
	~ScriptInfo();
 

	
 
	/**
 
	 * Get the Author of the script.
 
@@ -139,7 +137,7 @@ public:
 

	
 
protected:
 
	class Squirrel *engine;           ///< Engine used to register for Squirrel.
 
	HSQOBJECT *SQ_instance;           ///< The Squirrel instance created for this info.
 
	HSQOBJECT SQ_instance;            ///< The Squirrel instance created for this info.
 
	ScriptConfigItemList config_list; ///< List of settings from this Script.
 

	
 
private: