this is ObscuredFloat Struct
Inherits IFormattable, IEquatable< ObscuredFloat >, IEquatable< float >, IComparable< ObscuredFloat >, IComparable< float >, IComparable, IObscuredType, ISerializableObscuredType, and ISerializationCallbackReceiver.
so,
Public Member Functions
int GetEncrypted (out int key)
void SetEncrypted (int encrypted, int key)
float GetDecrypted ()
void RandomizeCryptoKey ()
and the static is :
Static Public Member Functions
static int Encrypt (float value, int key)
static float Decrypt (int value, int key)
static ObscuredFloat FromEncrypted (int encrypted, int key)
static int GenerateKey ()
the function Encrypt()
Code:
Encrypt()
static int Encrypt ( float value,
int key
)
which simply Encrypts passed value using passed key.
Key can be generated automatically using GenerateKey().
Code:
Decrypt()
static float Decrypt ( int value,
int key
)
Decrypts passed value you got from Encrypt() using same key.
so to explain more, you will need to create a struct for it , and hook it with that new struct,
for more info , go to the main website of them