OpenFusion/src/Vendors.hpp

18 lines
291 B
C++
Raw Normal View History

#pragma once
#include "core/Core.hpp"
#include "servers/CNShardServer.hpp"
#include "Items.hpp"
#include "PlayerManager.hpp"
struct VendorListing {
int sort, type, iID;
};
2021-04-16 17:28:59 +00:00
namespace Vendors {
extern std::map<int32_t, std::vector<VendorListing>> VendorTables;
void init();
}