mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-06 00:32:25 +00:00
17 lines
540 B
C++
17 lines
540 B
C++
//
|
|
// Created by dannu on 4/21/2026.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include "common/emu_versions.h"
|
|
#include <memory>
|
|
|
|
namespace Buff { class IBuff; }
|
|
namespace Message { class IMessage; }
|
|
|
|
// store all static functions for the different patches here
|
|
// store all static functions for the different patches here, this can return nullptr for unsupported patches
|
|
const std::unique_ptr<Buff::IBuff>& GetBuffComponent(EQ::versions::ClientVersion version);
|
|
const std::unique_ptr<Message::IMessage>& GetMessageComponent(EQ::versions::ClientVersion version);
|