1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 00:37:15 +01:00

Update sqratLightObj.h

This commit is contained in:
Sandu Liviu Catalin 2022-08-14 18:53:36 +03:00
parent c551390999
commit e8fa9e0259

View File

@ -88,6 +88,15 @@ struct LightObj {
sq_addref(SqVM(), &mObj); sq_addref(SqVM(), &mObj);
} }
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// Constructs a LightObj from a string object
///
/// \param o Squirrel object
///
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
explicit LightObj(const string & s) : LightObj(s.c_str(), static_cast< SQInteger >(s.size())) {
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// Constructs a LightObj from a Squirrel object at a certain index on the stack /// Constructs a LightObj from a Squirrel object at a certain index on the stack
/// ///