This commit is contained in:
niko
2026-04-08 23:40:05 +02:00
parent d6894bcbc7
commit 18dc73f922
7750 changed files with 1795369 additions and 0 deletions
@@ -0,0 +1,28 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
using RecRoom.Async;
namespace RecRoom.Tweening
{
// Token: 0x0200000E RID: 14
[Token(Token = "0x200000E")]
[StructLayout(3)]
public interface ITweenInstance
{
// Token: 0x06000022 RID: 34
[Token(Token = "0x6000022")]
[Address(Slot = "0")]
ITweenInstance SetOnComplete(Action callback);
// Token: 0x06000023 RID: 35
[Token(Token = "0x6000023")]
[Address(Slot = "1")]
IPromise AsPromise();
// Token: 0x06000024 RID: 36
[Token(Token = "0x6000024")]
[Address(Slot = "2")]
void Kill();
}
}