From 2e9c66d8e874b57a3d355c1e91f78769b0dcd9d5 Mon Sep 17 00:00:00 2001 From: MayaTheShy Date: Sun, 9 Nov 2025 02:15:31 -0500 Subject: [PATCH] feat: add unique pointer for OverteAuth in OverteClient class for authentication management --- src/OverteClient.hpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/OverteClient.hpp b/src/OverteClient.hpp index dd88aa2..dcf1220 100644 --- a/src/OverteClient.hpp +++ b/src/OverteClient.hpp @@ -120,6 +120,9 @@ private: std::string m_username; // Domain account username (for future signature-based auth) std::uint32_t m_sequenceNumber{0}; // Packet sequence number for NLPacket protocol std::uint16_t m_localID{0}; // Local ID assigned by domain server + + // Authentication + std::unique_ptr m_auth; // Very small in-process world state for testing std::unordered_map m_entities;