diff --git a/include/Server/Components/Objects/objects.hpp b/include/Server/Components/Objects/objects.hpp index 17bec89..cc836a3 100644 --- a/include/Server/Components/Objects/objects.hpp +++ b/include/Server/Components/Objects/objects.hpp @@ -297,3 +297,11 @@ struct IPlayerObjectData : public IExtension, public IPool /// Edit an attached object in an attachment slot for the player virtual void editAttachedObject(int index) = 0; }; + +static const UID PlayerCameraTargetData_UID = UID(0x7d2c8e1a4f3b6905); +struct IPlayerCameraTargetData : public IExtension +{ + PROVIDE_EXT_UID(PlayerCameraTargetData_UID); + + virtual IPlayerObject* getCameraTargetPlayerObject() = 0; +};