18 lines
486 B
C#
18 lines
486 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace RecRoom.Networking.SynchronizedFields
|
|
{
|
|
// Token: 0x02000008 RID: 8
|
|
[Token(Token = "0x2000008")]
|
|
[StructLayout(3)]
|
|
public interface IContextSynchronizedFieldFactory
|
|
{
|
|
// Token: 0x0600000C RID: 12
|
|
[Token(Token = "0x600000C")]
|
|
[Address(Slot = "0")]
|
|
SynchronizedField<T1> ForContext<T1>(string key, T1 defaultValue1, SetterPermissionMode permissionMode, [Optional] Action callback);
|
|
}
|
|
}
|