mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-25 18:47:35 +00:00
Updated class naming
This commit is contained in:
+21
-32
@@ -22,44 +22,33 @@
|
||||
|
||||
class EQStreamIdentifier;
|
||||
|
||||
namespace UF
|
||||
{
|
||||
namespace UF {
|
||||
|
||||
//these are the only public member of this namespace.
|
||||
extern void Register(EQStreamIdentifier &into);
|
||||
extern void Reload();
|
||||
extern void Register(EQStreamIdentifier& into);
|
||||
extern void Reload();
|
||||
|
||||
|
||||
|
||||
//you should not directly access anything below..
|
||||
//I just dont feel like making a seperate header for it.
|
||||
|
||||
class Strategy : public StructStrategy {
|
||||
public:
|
||||
Strategy();
|
||||
|
||||
protected:
|
||||
|
||||
virtual std::string Describe() const;
|
||||
virtual const EQ::versions::ClientVersion ClientVersion() const;
|
||||
|
||||
//magic macro to declare our opcode processors
|
||||
#include "ss_declare.h"
|
||||
#include "uf_ops.h"
|
||||
};
|
||||
|
||||
}; /*UF*/
|
||||
|
||||
namespace Buff {
|
||||
|
||||
class UF : public SoD
|
||||
class Strategy : public StructStrategy
|
||||
{
|
||||
public:
|
||||
UF() = default;
|
||||
~UF() override = default;
|
||||
Strategy();
|
||||
|
||||
protected:
|
||||
virtual std::string Describe() const;
|
||||
virtual const EQ::versions::ClientVersion ClientVersion() const;
|
||||
|
||||
//magic macro to declare our opcode processors
|
||||
#include "ss_declare.h"
|
||||
#include "uf_ops.h"
|
||||
};
|
||||
|
||||
class BuffComponent : public SoD::BuffComponent
|
||||
{
|
||||
public:
|
||||
BuffComponent() = default;
|
||||
~BuffComponent() override = default;
|
||||
|
||||
std::unique_ptr<EQApplicationPacket> RefreshBuffs(EmuOpcode opcode, Mob* mob, bool remove,
|
||||
bool buff_timers_suspended, const std::vector<uint32_t>& slots) const override;
|
||||
};
|
||||
|
||||
} // namespace Buff
|
||||
}; /*UF*/
|
||||
|
||||
Reference in New Issue
Block a user