mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-01-31 09:57:14 +01:00
Update sqratConst.h
This commit is contained in:
parent
a09948770f
commit
a12ba35d53
@ -222,6 +222,20 @@ public:
|
|||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// Binds an enumeration value
|
||||||
|
///
|
||||||
|
/// \param name Name of the value as it will appear in Squirrel
|
||||||
|
/// \param val Value to bind
|
||||||
|
///
|
||||||
|
/// \return The Enumeration itself so the call can be chained
|
||||||
|
///
|
||||||
|
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
virtual Enumeration& Const(const SQChar* name, const long int val) {
|
||||||
|
BindValue<long int>(name, val, false);
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
/// Binds an enumeration value
|
/// Binds an enumeration value
|
||||||
///
|
///
|
||||||
|
Loading…
x
Reference in New Issue
Block a user