restructure

This commit is contained in:
Soreepeong 2025-07-26 22:33:38 +09:00
parent 3381ac1c7d
commit b53a97408b
263 changed files with 2221 additions and 1191 deletions

View file

@ -4,7 +4,7 @@ public unsafe partial struct ImGuiPayload
{
public readonly Span<byte> DataSpan => new(this.Data, this.DataSize);
public readonly bool IsDataType(Utf8Buffer type)
public readonly bool IsDataType(ImU8String type)
{
fixed (ImGuiPayload* ptr = &this)
return ImGui.IsDataType(ptr, type);
@ -13,5 +13,5 @@ public unsafe partial struct ImGuiPayload
public partial struct ImGuiPayloadPtr
{
public readonly bool IsDataType(Utf8Buffer type) => ImGui.IsDataType(this, type);
public readonly bool IsDataType(ImU8String type) => ImGui.IsDataType(this, type);
}