fix: forget arargs for toasts - too complex, will implement string formatting in AngelScript instead
All checks were successful
CI / build-and-test (push) Successful in 2m19s

This commit is contained in:
2025-11-14 15:42:41 +13:00
parent 2ed2a5c953
commit dcc21f2ba2
3 changed files with 27 additions and 92 deletions

View File

@@ -11,5 +11,7 @@ int LOG_FATAL;
namespace Toast {
void Info(const string&in);
void Info(const string&in, const ?&in ...);
void Warning(const string&in);
void Error(const string&in);
void Success(const string&in);
}