Files
Ronald Caesar 5f0791e8b1 extern/luajit-imgui: add source code properly
This adds luajit-imgui without submodules.

Signed-off-by: Ronald Caesar <github43132@proton.me>
2026-06-11 14:12:55 -04:00

26 lines
548 B
C++

#include "./implot/implot.h"
#include "./implot/implot_internal.h"
#include "cimplot.h"
//ImPlotPoint getters manually wrapped for taking getters modifying ImPlotPoint*
ImPlotPoint_getter getter_funcX;
ImPlotPoint_getter getter_funcX2;
ImPlotPoint Wrapper(int idx, void* data)
{
ImPlotPoint pp;
getter_funcX(data, idx, reinterpret_cast<ImPlotPoint_c*>(&pp));
return pp;
}
ImPlotPoint Wrapper2(int idx, void* data)
{
ImPlotPoint pp;
getter_funcX2(data, idx, reinterpret_cast<ImPlotPoint_c*>(&pp));
return pp;
}
#include "auto_funcs.cpp"