Core: Add singleton instance to _Marshalls

This commit is contained in:
Ignacio Etcheverry 2016-11-05 17:13:04 +01:00
parent c67e3a485d
commit 6d6d9bc7f9
3 changed files with 14 additions and 2 deletions

View file

@ -2043,6 +2043,13 @@ _Directory::~_Directory() {
memdelete(d);
}
_Marshalls* _Marshalls::singleton=NULL;
_Marshalls *_Marshalls::get_singleton()
{
return singleton;
}
String _Marshalls::variant_to_base64(const Variant& p_var) {
int len;