mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-08-09 20:24:16 +00:00
Styling edits
This commit is contained in:
@@ -15,9 +15,22 @@ public:
|
||||
RocketLaunchLupComponent(Entity* parent);
|
||||
~RocketLaunchLupComponent() override;
|
||||
|
||||
/**
|
||||
* Handles an OnUse event from some entity, preparing it for launch to some other world
|
||||
* Builds m_LUPWorlds
|
||||
* @param originator the entity that triggered the event
|
||||
*/
|
||||
void OnUse(Entity* originator) override;
|
||||
|
||||
/**
|
||||
* Handles an OnUse event from some entity, preparing it for launch to some other world
|
||||
*
|
||||
* @param originator the entity that triggered the event
|
||||
* @param index index of the world that was selected
|
||||
* @param sysAddr the address to send gamemessage responses to
|
||||
*/
|
||||
void OnSelectWorld(Entity* originator, uint32_t index, const SystemAddress& sysAddr);
|
||||
private:
|
||||
// vector of the LUP World Zone IDs, built from CDServer's LUPZoneIDs table
|
||||
std::vector<LWOMAPID> m_LUPWorlds {};
|
||||
};
|
||||
|
Reference in New Issue
Block a user