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

18 lines
541 B
Java
Raw Normal View History

2021-10-29 22:50:42 +02:00
package io.gitlab.jfronny.inceptum.windows;
2021-10-28 21:31:51 +02:00
import imgui.ImGui;
2021-11-02 13:43:18 +01:00
import io.gitlab.jfronny.inceptum.util.MetaHolder;
2021-10-28 21:31:51 +02:00
public class AboutWindow extends Window {
public AboutWindow() {
super("About");
}
@Override
public void draw() {
2021-11-02 13:43:18 +01:00
ImGui.text("Inceptum " + MetaHolder.VERSION.version + " Copyright (C) 2021 JFronny");
2021-10-28 21:31:51 +02:00
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.");
}
}