This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,31 @@
using System;
using Google.Protobuf;
using UnityEngine;
namespace RecRoom.Protobuf
{
// Token: 0x0200128B RID: 4747
public static class OKEPMDONNBA
{
// Token: 0x06029220 RID: 168480 RVA: 0x00B7FB48 File Offset: 0x00B7DD48
public static Guid KLNKHLCMIMD(this ByteString KCKIMCJGKMF)
{
if (KCKIMCJGKMF.IsEmpty)
{
return Guid.Empty;
}
if (KCKIMCJGKMF.Length != 16)
{
Debug.LogErrorFormat("Cannot deserialize malformed ByteString to GUID {0}", new object[] { KCKIMCJGKMF.ToStringUtf8() });
return Guid.Empty;
}
return new Guid(KCKIMCJGKMF.ToByteArray());
}
// Token: 0x06029221 RID: 168481 RVA: 0x00B7FBA0 File Offset: 0x00B7DDA0
public static ByteString MDOELPMBEGJ(this Guid JAGNIKELELP)
{
return ByteString.CopyFrom(JAGNIKELELP.ToByteArray());
}
}
}