mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 21:01:29 +00:00
29 lines
482 B
C++
29 lines
482 B
C++
|
|
#include "../global_define.h"
|
|
#include "patches.h"
|
|
|
|
#include "titanium.h"
|
|
#include "uf.h"
|
|
#include "sof.h"
|
|
#include "sod.h"
|
|
#include "rof.h"
|
|
#include "rof2.h"
|
|
|
|
void RegisterAllPatches(EQStreamIdentifier &into) {
|
|
Titanium::Register(into);
|
|
SoF::Register(into);
|
|
SoD::Register(into);
|
|
UF::Register(into);
|
|
RoF::Register(into);
|
|
RoF2::Register(into);
|
|
}
|
|
|
|
void ReloadAllPatches() {
|
|
Titanium::Reload();
|
|
SoF::Reload();
|
|
SoD::Reload();
|
|
UF::Reload();
|
|
RoF::Reload();
|
|
RoF2::Reload();
|
|
}
|