mirror of
https://github.com/OpenFusionProject/OpenFusion.git
synced 2024-11-04 22:40:05 +00:00
dongresource
a55a34e09a
CNProtocol, CNShared, CNStructs and Defines are now in core/. CNLoginServer, CNShardServer and Monitor are now in servers/. core/Core.hpp wraps all the core headers except for CNShared.hpp. Defines.cpp has been renamed to Packets.cpp, and so has its corresponding namespace, but not the header file. This is in preparation for upcoming changes.
29 lines
592 B
C++
29 lines
592 B
C++
#pragma once
|
|
|
|
#include <set>
|
|
#include <vector>
|
|
|
|
#include "Player.hpp"
|
|
#include "servers/CNShardServer.hpp"
|
|
|
|
struct NanoData {
|
|
int style;
|
|
};
|
|
|
|
struct NanoTuning {
|
|
int reqItemCount;
|
|
int reqItems;
|
|
};
|
|
|
|
namespace Nanos {
|
|
extern std::map<int32_t, NanoData> NanoTable;
|
|
extern std::map<int32_t, NanoTuning> NanoTunings;
|
|
void init();
|
|
|
|
// Helper methods
|
|
void addNano(CNSocket* sock, int16_t nanoID, int16_t slot, bool spendfm=false);
|
|
void summonNano(CNSocket* sock, int slot, bool silent = false);
|
|
int nanoStyle(int nanoID);
|
|
bool getNanoBoost(Player* plr);
|
|
}
|