mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 21:01:29 +00:00
36 lines
674 B
C++
36 lines
674 B
C++
#ifndef TITANIUM_H_
|
|
#define TITANIUM_H_
|
|
|
|
#include "../struct_strategy.h"
|
|
|
|
class EQStreamIdentifier;
|
|
|
|
namespace Titanium {
|
|
|
|
//these are the only public member of this namespace.
|
|
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 ClientVersion GetClientVersion() const;
|
|
|
|
//magic macro to declare our opcode processors
|
|
#include "ss_declare.h"
|
|
#include "titanium_ops.h"
|
|
};
|
|
|
|
};
|
|
|
|
#endif /*TITANIUM_H_*/
|