Inceptum/src/main/java/io/gitlab/jfronny/inceptum/windows/AboutWindow.java

17 lines
456 B
Java

package io.gitlab.jfronny.inceptum.windows;
import imgui.ImGui;
public class AboutWindow extends Window {
public AboutWindow() {
super("About");
}
@Override
public void draw() {
ImGui.text("Inceptum 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.");
}
}