mirror of
https://github.com/OpenFusionProject/OpenFusion.git
synced 2024-11-22 13:30:06 +00:00
Gent Semaj
ae327cc104
* Use FE2CL_..._AROUND, _AROUND_DEL packets * Use increased buffer size for 728 and 1013 protocols
19 lines
303 B
C++
19 lines
303 B
C++
#pragma once
|
|
|
|
#include "core/Core.hpp"
|
|
|
|
struct EggType {
|
|
int dropCrateId;
|
|
int effectId;
|
|
int duration;
|
|
int regen;
|
|
};
|
|
|
|
namespace Eggs {
|
|
extern std::unordered_map<int, EggType> EggTypes;
|
|
|
|
void init();
|
|
|
|
void eggBuffPlayer(CNSocket* sock, int skillId, int eggId, int duration);
|
|
}
|