18 lines
272 B
C++
18 lines
272 B
C++
#include <cstdio>
|
|
#include <SDL2/SDL.h>
|
|
#include <bits/stdc++.h>
|
|
|
|
#include "imgui.h"
|
|
#include "ssup.h"
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
void renderHelpMenu(){
|
|
if (ImGui::BeginTabItem(appLang == LANG::ENGLISH ? "Help" : "Hilfe")){
|
|
|
|
ImGui::EndTabItem();
|
|
}
|
|
}
|