added new pet bitflag system

This commit is contained in:
jadebenn
2023-12-15 05:34:38 -06:00
parent 668bebf68c
commit 054371dd01
6 changed files with 82 additions and 547 deletions

View File

@@ -5,7 +5,7 @@
#include <string>
struct WorldConfig {
int32_t worldConfigID{}; //! Primary key for WorlcConfig table
int32_t worldConfigID{}; //! Primary key for WorldConfig table
float peGravityValue{}; //! Unknown
float peBroadphaseWorldSize{}; //! Unknown
float peGameObjScaleFactor{}; //! Unknown

View File

@@ -54,6 +54,9 @@ public:
return m_WorldConfig;
};
// Override world config (for debugging purposes)
void SetWorldConfig(WorldConfig* worldConfig) { m_WorldConfig = worldConfig; }
private:
/**
* The starting unique mission ID.