2022-01-28 11:00:59 +00:00
|
|
|
package love.distributedrebirth.demo4d;
|
|
|
|
|
|
|
|
import imgui.type.ImBoolean;
|
|
|
|
|
2022-01-29 04:50:02 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
*
|
2022-01-31 12:40:01 +00:00
|
|
|
* @author willemtsade ©Δ∞ 仙上主天
|
2022-01-29 04:50:02 +00:00
|
|
|
*/
|
2022-01-28 11:00:59 +00:00
|
|
|
public interface ImGuiRenderer {
|
|
|
|
|
|
|
|
void render(ImBoolean widgetOpen);
|
|
|
|
}
|