1
0
KF2-Dev-Scripts/UDKBase/classes/UDKGameSettingsCommon.uc

27 lines
730 B
Ucode
Raw Normal View History

2020-12-13 15:01:13 +00:00
/**
* Copyright 1998-2013 Epic Games, Inc. All Rights Reserved.
*/
/** Holds the settings that are common to all match types */
class UDKGameSettingsCommon extends OnlineGameSettings
native;
/**
* Converts a string to a hexified blob.
*
* @param InString String to convert.
* @param OutBlob Resulting blob
*
* @return Returns whether or not the string was converted.
*/
native static function bool StringToBlob(const out string InString, out string OutBlob);
/**
* Converts a hexified blob to a normal string.
*
* @param InBlob String to convert back.
*
* @return Returns whether or not the string was converted.
*/
native static function string BlobToString(const out string InBlob);