feat(trans): add STrans functions

This commit is contained in:
Adam Heinermann 2025-09-23 00:08:41 -07:00 committed by fallenoak
parent b4e950a1c9
commit 50872dfc14
9 changed files with 2571 additions and 15 deletions

View file

@ -1,5 +1,6 @@
#include "Core.hpp"
#include "Event.hpp"
#include "Transparency.hpp"
int32_t STORMAPI StormDestroy() {
// Combined list of all calls from every game
@ -22,6 +23,6 @@ int32_t STORMAPI StormDestroy() {
// SRegDestroy();
// SErrDestroy();
// SLogDestroy();
// STransDestroy();
STransDestroy();
return 1;
}