|
|
|
@ -6,6 +6,7 @@
|
|
|
|
|
\
|
|
|
|
|
{"AddWorldObject", WorldFunctions::AddWorldObject},\
|
|
|
|
|
{"SetBaseEventCell", WorldFunctions::SetBaseEventCell},\
|
|
|
|
|
{"SetContainerChangesAction", WorldFunctions::SetContainerChangesAction},\
|
|
|
|
|
\
|
|
|
|
|
{"SetObjectRefId", WorldFunctions::SetObjectRefId},\
|
|
|
|
|
{"SetObjectRefNumIndex", WorldFunctions::SetObjectRefNumIndex},\
|
|
|
|
@ -35,6 +36,8 @@
|
|
|
|
|
{"GetObjectRotY", WorldFunctions::GetObjectRotY},\
|
|
|
|
|
{"GetObjectRotZ", WorldFunctions::GetObjectRotZ},\
|
|
|
|
|
\
|
|
|
|
|
{"SendContainer", WorldFunctions::SendContainer},\
|
|
|
|
|
\
|
|
|
|
|
{"SendObjectDelete", WorldFunctions::SendObjectDelete},\
|
|
|
|
|
{"SendObjectPlace", WorldFunctions::SendObjectPlace},\
|
|
|
|
|
{"SendObjectScale", WorldFunctions::SendObjectScale},\
|
|
|
|
@ -54,6 +57,7 @@ public:
|
|
|
|
|
|
|
|
|
|
static void AddWorldObject() noexcept;
|
|
|
|
|
static void SetBaseEventCell(const char* cellDescription) noexcept;
|
|
|
|
|
static void SetContainerChangesAction(int action) noexcept;
|
|
|
|
|
|
|
|
|
|
static void SetObjectRefId(const char* refId) noexcept;
|
|
|
|
|
static void SetObjectRefNumIndex(int refNumIndex) noexcept;
|
|
|
|
@ -83,6 +87,8 @@ public:
|
|
|
|
|
static double GetObjectRotY(unsigned int i) noexcept;
|
|
|
|
|
static double GetObjectRotZ(unsigned int i) noexcept;
|
|
|
|
|
|
|
|
|
|
static void SendContainer() noexcept;
|
|
|
|
|
|
|
|
|
|
static void SendObjectDelete() noexcept;
|
|
|
|
|
static void SendObjectPlace() noexcept;
|
|
|
|
|
static void SendObjectScale() noexcept;
|
|
|
|
|