31 lines
642 B
C#
31 lines
642 B
C#
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);
|
|
}
|
|
}
|