Added editor codebase

This commit is contained in:
2026-03-12 21:08:35 +01:00
parent b7b3044b63
commit 9afd8b9670
48 changed files with 57365 additions and 0 deletions

17
Editor/help.cpp Normal file
View File

@@ -0,0 +1,17 @@
#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();
}
}