29 lines
596 B
C#
29 lines
596 B
C#
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();
|
|
}
|
|
}
|