Reorganized and cleaned up the solution.

This commit is contained in:
HikikoMarmy
2026-03-02 12:37:07 +00:00
parent 8012f30170
commit d4dfbddf69
175 changed files with 1516 additions and 1136 deletions

View File

@@ -0,0 +1,22 @@
#pragma once
#include <memory>
class RealmUser;
using sptr_user = std::shared_ptr< RealmUser >;
using wptr_user = std::weak_ptr< RealmUser >;
class GameSession;
using sptr_game_session = std::shared_ptr< GameSession >;
class RealmSocket;
using sptr_socket = std::shared_ptr< RealmSocket >;
class ByteBuffer;
using sptr_byte_stream = std::shared_ptr< ByteBuffer >;
class ChatRoomSession;
using sptr_chat_room_session = std::shared_ptr< ChatRoomSession >;
class RealmCharacter;
using sptr_realm_character = std::shared_ptr< RealmCharacter >;