Files
2026-04-08 23:40:05 +02:00

19 lines
452 B
C#

using System;
using System.Collections;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace RecRoom.Async
{
// Token: 0x02000008 RID: 8
[Token(Token = "0x2000008")]
[StructLayout(3)]
public interface ICancelablePromise<T> : IPromise<T>, IPromise, IEnumerator, ICancelablePromise
{
// Token: 0x0600000F RID: 15
[Token(Token = "0x600000F")]
[Address(Slot = "0")]
ICancelablePromise<T> Canceled(Action onCanceled);
}
}