Work on making userdata work through extern C entry points
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@@ -76,9 +76,9 @@ public:
|
||||
|
||||
class StringScriptType : public ScriptType{
|
||||
bool _isKnownAtBind;
|
||||
int _hashValue;
|
||||
uint32_t _hashValue;
|
||||
public:
|
||||
explicit StringScriptType(bool knownAtBind, int hashValue): ScriptType(TypeClass::String){
|
||||
explicit StringScriptType(bool knownAtBind, uint32_t hashValue): ScriptType(TypeClass::String){
|
||||
_isKnownAtBind = knownAtBind;
|
||||
_hashValue = hashValue;
|
||||
}
|
||||
@@ -87,7 +87,7 @@ public:
|
||||
return _isKnownAtBind;
|
||||
}
|
||||
|
||||
int GetHashValue(){
|
||||
uint32_t GetHashValue(){
|
||||
return _hashValue;
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user