mirror of
https://github.com/HikikoMarmy/Champions-Reborn-Server.git
synced 2026-04-04 16:49:47 -03:00
Reorganized and cleaned up the solution.
This commit is contained in:
22
Include/Common/ForwardDecl.hpp
Normal file
22
Include/Common/ForwardDecl.hpp
Normal 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 >;
|
||||
Reference in New Issue
Block a user