| 12 | {} |
| 13 | |
| 14 | void AboutDialog::processIntern() |
| 15 | { |
| 16 | ImGui::Text("Artificial Life Environment, version %s\n\nis an open source project initiated and maintained by\nChristian Heinemann.", Const::ProgramVersion.c_str()); |
| 17 | |
| 18 | ImGui::Dummy({0, ImGui::GetContentRegionAvail().y - scale(50.0f)}); |
| 19 | AlienImGui::Separator(); |
| 20 | |
| 21 | if (AlienImGui::Button("OK")) { |
| 22 | close(); |
| 23 | } |
| 24 | ImGui::SetItemDefaultFocus(); |
| 25 | } |