You've already forked MapStudio.UI
mirror of
https://github.com/CraftyBoss/MapStudio.UI.git
synced 2026-04-01 08:50:18 -07:00
17 lines
344 B
C#
17 lines
344 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using ImGuiNET;
|
|
|
|
namespace MapStudio.UI
|
|
{
|
|
public static class ImGuiExtension
|
|
{
|
|
public static unsafe bool IsValid(this ImGuiPayloadPtr payload) {
|
|
return payload.NativePtr != null;
|
|
}
|
|
}
|
|
}
|