updating some stuff

This commit is contained in:
kin fuyuki 2025-12-29 13:27:46 -03:00
commit d8407ece03
14 changed files with 26620 additions and 0 deletions

12
include/enginend/resmgr.h Normal file
View file

@ -0,0 +1,12 @@
#pragma once
#include <string>
#include "engine.h"
inline const char *AT(std::string path) {
if (platform==LINUX || platform==WINDOWS || platform==MACOS) {
return path.c_str();
}else {
if (platform==ANDROID) {
return ("/data/data/"+androidpackage+"/files/"+path).c_str();
}
}
}