summaryrefslogtreecommitdiffstats
path: root/tools/worldbuilder/code/main/constants.h
diff options
context:
space:
mode:
authorSvxy <aidan61605@gmail.com>2023-05-31 23:31:32 +0200
committerSvxy <aidan61605@gmail.com>2023-05-31 23:31:32 +0200
commiteb4b3404aa00220d659e532151dab13d642c17a3 (patch)
tree7e1107c4995489a26c4007e41b53ea8d00ab2134 /tools/worldbuilder/code/main/constants.h
downloadThe-Simpsons-Hit-and-Run-eb4b3404aa00220d659e532151dab13d642c17a3.tar
The-Simpsons-Hit-and-Run-eb4b3404aa00220d659e532151dab13d642c17a3.tar.gz
The-Simpsons-Hit-and-Run-eb4b3404aa00220d659e532151dab13d642c17a3.tar.bz2
The-Simpsons-Hit-and-Run-eb4b3404aa00220d659e532151dab13d642c17a3.tar.lz
The-Simpsons-Hit-and-Run-eb4b3404aa00220d659e532151dab13d642c17a3.tar.xz
The-Simpsons-Hit-and-Run-eb4b3404aa00220d659e532151dab13d642c17a3.tar.zst
The-Simpsons-Hit-and-Run-eb4b3404aa00220d659e532151dab13d642c17a3.zip
Diffstat (limited to 'tools/worldbuilder/code/main/constants.h')
-rw-r--r--tools/worldbuilder/code/main/constants.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/tools/worldbuilder/code/main/constants.h b/tools/worldbuilder/code/main/constants.h
new file mode 100644
index 0000000..fbdc641
--- /dev/null
+++ b/tools/worldbuilder/code/main/constants.h
@@ -0,0 +1,31 @@
+#ifndef WB_CONSTANTS
+#define WB_CONSTANTS
+
+namespace WBConstants
+{
+ const unsigned int TypeIDPrefix = 0x00040201;
+ const float Scale = 100.0f;
+
+ namespace NodeIDs
+ {
+ const unsigned int EventLocator = 0xd0;
+ const unsigned int ScriptLocator = 0xd1;
+ const unsigned int GenericLocator = 0xd2;
+ const unsigned int CarStartLocator = 0xd3;
+ const unsigned int SplineLocator = 0xd4;
+ const unsigned int ZoneEventLocator = 0xd5;
+ const unsigned int OcclusionLocator = 0xd6;
+ const unsigned int RailCamLocator = 0xd7;
+ const unsigned int InteriorEntranceLocator = 0xd8;
+ const unsigned int DirectionalLocator = 0xd9;
+ const unsigned int ActionEventLocator = 0xda;
+ const unsigned int FOVLocator = 0xdb;
+ const unsigned int BreakableCameraLocator = 0xdc;
+ const unsigned int StaticCameraLocator = 0xdd;
+ const unsigned int PedGroupLocator = 0xde;
+
+ const unsigned int TriggerVolume = 0xe0;
+ }
+}
+
+#endif \ No newline at end of file