Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions Engine/AutoGeneratedCoreBindings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3219,10 +3219,6 @@ public static Buffer TryGetFromCache(IntPtr native)
[EditorBrowsable(EditorBrowsableState.Never)]
private static extern void cbg_Buffer_Unlock(IntPtr selfPtr);

[DllImport("Altseed2_Core")]
[EditorBrowsable(EditorBrowsableState.Never)]
private static extern IntPtr cbg_Buffer_Read(IntPtr selfPtr);

[DllImport("Altseed2_Core")]
[EditorBrowsable(EditorBrowsableState.Never)]
private static extern int cbg_Buffer_GetSize(IntPtr selfPtr);
Expand Down Expand Up @@ -3280,12 +3276,6 @@ public void Unlock()
cbg_Buffer_Unlock(selfPtr);
}

public IntPtr Read()
{
var ret = cbg_Buffer_Read(selfPtr);
return ret;
}

/// <summary>
/// <see cref="Buffer"/>のインスタンスを削除します。
/// </summary>
Expand Down