src/squirrel.hpp
branchnoai
changeset 9673 ee4f133c84ec
parent 9588 01b2435c977b
child 9674 15f7b310b6cf
--- a/src/squirrel.hpp	Wed Jul 18 10:53:58 2007 +0000
+++ b/src/squirrel.hpp	Wed Jul 18 14:58:37 2007 +0000
@@ -96,6 +96,11 @@
 	 * @param instance Returning value with the pointer to the instance.
 	 * @return False if creating failed.
 	 */
+	static bool CreateClassInstanceVM(HSQUIRRELVM vm, const char *class_name, void *real_instance, HSQOBJECT *instance);
+
+	/**
+	 * Exactly the same as CreateClassInstanceVM, only callable without instance of Squirrel.
+	 */
 	bool CreateClassInstance(const char *class_name, void *real_instance, HSQOBJECT *instance);
 
 	/**