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: 0x02000159 RID: 345
|
|
public class IStoryController : Il2CppObjectBase
|
|
{
|
|
// Token: 0x0600433C RID: 17212 RVA: 0x0010B184 File Offset: 0x00109384
|
|
[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: 0x0600433D RID: 17213 RVA: 0x0010B1D4 File Offset: 0x001093D4
|
|
[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: 0x0600433E RID: 17214 RVA: 0x0010B224 File Offset: 0x00109424
|
|
// 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, 100667659);
|
|
IStoryController.NativeMethodInfoPtr_NextDialogue_Public_Abstract_Virtual_New_Void_0 = IL2CPP.GetIl2CppMethodByToken(Il2CppClassPointerStore<IStoryController>.NativeClassPtr, 100667660);
|
|
}
|
|
|
|
// Token: 0x0600433F RID: 17215 RVA: 0x000ED5BE File Offset: 0x000EB7BE
|
|
public IStoryController(IntPtr pointer)
|
|
: base(pointer)
|
|
{
|
|
}
|
|
|
|
// Token: 0x04002C54 RID: 11348
|
|
private static readonly IntPtr NativeMethodInfoPtr_SkipMenu_Public_Abstract_Virtual_New_Void_0;
|
|
|
|
// Token: 0x04002C55 RID: 11349
|
|
private static readonly IntPtr NativeMethodInfoPtr_NextDialogue_Public_Abstract_Virtual_New_Void_0;
|
|
}
|