This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,30 @@
using System;
using Cpp2IlInjected;
namespace StansAssets.Foundation.Patterns
{
// Token: 0x02000036 RID: 54
[Token(Token = "0x2000024")]
public interface IReadOnlyServiceLocator
{
// Token: 0x060000BE RID: 190
[Token(Token = "0x600007C")]
[Address(Slot = "0")]
T Get<T>();
// Token: 0x060000BF RID: 191
[Token(Token = "0x600007D")]
[Address(Slot = "1")]
object Get(Type type);
// Token: 0x060000C0 RID: 192
[Token(Token = "0x600007E")]
[Address(Slot = "2")]
bool IsRegistered<T>();
// Token: 0x060000C1 RID: 193
[Token(Token = "0x600007F")]
[Address(Slot = "3")]
bool IsRegistered(Type type);
}
}