26 lines
527 B
C#
26 lines
527 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using Cpp2IlInjected;
|
|
using JetBrains.Annotations;
|
|
using RecRoom.Async;
|
|
|
|
namespace RecRoom.DataStructures.ResourceHandles
|
|
{
|
|
// Token: 0x02000036 RID: 54
|
|
[Token(Token = "0x2000036")]
|
|
[StructLayout(3)]
|
|
public interface IResourceHandle : IDisposable
|
|
{
|
|
// Token: 0x17000027 RID: 39
|
|
// (get) Token: 0x060000DF RID: 223
|
|
[Token(Token = "0x17000027")]
|
|
[NotNull]
|
|
IPromise ResourcePromise
|
|
{
|
|
[Token(Token = "0x60000DF")]
|
|
[Address(Slot = "0")]
|
|
get;
|
|
}
|
|
}
|
|
}
|