52 lines
2.3 KiB
C#
52 lines
2.3 KiB
C#
using System;
|
|
using Il2CppInterop.Common.Attributes;
|
|
using Il2CppInterop.Runtime;
|
|
using Il2CppInterop.Runtime.InteropTypes;
|
|
|
|
// Token: 0x0200015F RID: 351
|
|
public class IStoryController : Il2CppObjectBase
|
|
{
|
|
// Token: 0x060043AE RID: 17326 RVA: 0x0010CD90 File Offset: 0x0010AF90
|
|
[CallerCount(0)]
|
|
public unsafe virtual void SkipMenu()
|
|
{
|
|
IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
|
IntPtr* ptr = null;
|
|
IntPtr intPtr2;
|
|
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(IL2CPP.il2cpp_object_get_virtual_method(IL2CPP.Il2CppObjectBaseToPtr(this), IStoryController.NativeMethodInfoPtr_SkipMenu_Public_Abstract_Virtual_New_Void_0), IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
}
|
|
|
|
// Token: 0x060043AF RID: 17327 RVA: 0x0010CDE0 File Offset: 0x0010AFE0
|
|
[CallerCount(0)]
|
|
public unsafe virtual void NextDialogue()
|
|
{
|
|
IL2CPP.Il2CppObjectBaseToPtrNotNull(this);
|
|
IntPtr* ptr = null;
|
|
IntPtr intPtr2;
|
|
IntPtr intPtr = IL2CPP.il2cpp_runtime_invoke(IL2CPP.il2cpp_object_get_virtual_method(IL2CPP.Il2CppObjectBaseToPtr(this), IStoryController.NativeMethodInfoPtr_NextDialogue_Public_Abstract_Virtual_New_Void_0), IL2CPP.Il2CppObjectBaseToPtrNotNull(this), (void**)ptr, ref intPtr2);
|
|
Il2CppException.RaiseExceptionIfNecessary(intPtr2);
|
|
}
|
|
|
|
// Token: 0x060043B0 RID: 17328 RVA: 0x0010CE30 File Offset: 0x0010B030
|
|
// Note: this type is marked as 'beforefieldinit'.
|
|
static IStoryController()
|
|
{
|
|
Il2CppClassPointerStore<IStoryController>.NativeClassPtr = IL2CPP.GetIl2CppClass("Assembly-CSharp.dll", "", "IStoryController");
|
|
IStoryController.NativeMethodInfoPtr_SkipMenu_Public_Abstract_Virtual_New_Void_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<IStoryController>.NativeClassPtr, 100667685);
|
|
IStoryController.NativeMethodInfoPtr_NextDialogue_Public_Abstract_Virtual_New_Void_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<IStoryController>.NativeClassPtr, 100667686);
|
|
}
|
|
|
|
// Token: 0x060043B1 RID: 17329 RVA: 0x000EE522 File Offset: 0x000EC722
|
|
public IStoryController(IntPtr pointer)
|
|
: base(pointer)
|
|
{
|
|
}
|
|
|
|
// Token: 0x04002C9F RID: 11423
|
|
private static readonly IntPtr NativeMethodInfoPtr_SkipMenu_Public_Abstract_Virtual_New_Void_0;
|
|
|
|
// Token: 0x04002CA0 RID: 11424
|
|
private static readonly IntPtr NativeMethodInfoPtr_NextDialogue_Public_Abstract_Virtual_New_Void_0;
|
|
}
|