Rename Vendor.Xpp -> Vendors.Xpp

This commit is contained in:
gsemaj
2021-04-16 13:28:59 -04:00
parent 588e941d3c
commit fa7c88e214
6 changed files with 15 additions and 15 deletions

17
src/Vendors.hpp Normal file
View File

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