This commit is contained in:
niko
2026-04-08 23:40:05 +02:00
parent d6894bcbc7
commit 18dc73f922
7750 changed files with 1795369 additions and 0 deletions
@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace RecRoom
{
// Token: 0x02000021 RID: 33
[Token(Token = "0x2000021")]
[StructLayout(3)]
public static class DictionaryExt
{
// Token: 0x06000090 RID: 144 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000090")]
[Address(RVA = "0x1E2B820", Offset = "0x1E2A220", VA = "0x181E2B820")]
public static TValue GetOrCreate<TValue, TKey>(this IDictionary<TKey, TValue> dict, TKey key) where TValue : new()
{
return null;
}
}
}