Remove some cpp includes.

This commit is contained in:
KimLS 2025-12-09 20:04:34 -08:00
parent a648d09b1b
commit 5843ff0524
4 changed files with 3 additions and 7 deletions

View File

@ -93,6 +93,8 @@ set(common_sources
spdat.cpp spdat.cpp
spdat_bot.cpp spdat_bot.cpp
strings.cpp strings.cpp
strings_legacy.cpp
strings_misc.cpp
struct_strategy.cpp struct_strategy.cpp
textures.cpp textures.cpp
timer.cpp timer.cpp

View File

@ -48,14 +48,9 @@
#include <random> #include <random>
#include <string> #include <string>
//Const char based
#include "strings_legacy.cpp" // legacy c functions
#include "strings_misc.cpp" // anything non "Strings" scoped
#ifdef _WINDOWS #ifdef _WINDOWS
#include <ctype.h> #include <ctype.h>
#include <functional> #include <functional>
#include <algorithm>
#endif #endif
std::string Strings::Random(size_t length) std::string Strings::Random(size_t length)

View File

@ -111,6 +111,7 @@ set(zone_sources
xtargetautohaters.cpp xtargetautohaters.cpp
zone.cpp zone.cpp
zone_config.cpp zone_config.cpp
zone_loot.cpp
zonedb.cpp zonedb.cpp
zone_base_data.cpp zone_base_data.cpp
zone_event_scheduler.cpp zone_event_scheduler.cpp

View File

@ -3584,5 +3584,3 @@ std::vector<std::string> Zone::GetTimers()
return v; return v;
} }
#include "zone_loot.cpp"