fix dumb compile errors from my hand merge

This commit is contained in:
KimLS
2026-04-04 15:48:43 -07:00
parent a9effc7bac
commit ccdc9f2e43
7 changed files with 311 additions and 362 deletions
+36
View File
@@ -0,0 +1,36 @@
#ifndef COMMON_LAURION_H
#define COMMON_LAURION_H
#include "../struct_strategy.h"
class EQStreamIdentifier;
namespace SteamLatest
{
//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 EQ::versions::ClientVersion ClientVersion() const;
//magic macro to declare our opcode processors
#include "ss_declare.h"
#include "steam_latest_ops.h"
};
}; /*SteamLatest*/
#endif /*COMMON_LAURION_H*/