package io.gitlab.jfronny.glaunch.windows; import imgui.ImGui; public class AboutWindow extends Window { public AboutWindow() { super("About"); } @Override public void draw() { ImGui.text("GLaunch Copyright (C) 2021 JFronny"); ImGui.text("This program comes with ABSOLUTELY NO WARRANTY."); ImGui.text("This is free software, and you are welcome to redistribute it under certain conditions."); } }