OpenFusion/src/Vendor.hpp
dongresource e9bc2fe561 [refactor] Remove the word 'Manager' from most source files/namespaces
ChatManager -> Chat
MissionManager -> Missions
NanoManager -> Nanos
TransportManager -> Transport
ChunkManager -> Chunking
BuddyManager -> Buddies
GroupManager -> Groups
RacingManager -> Racing
ItemManager -> Items

NPCManager and PlayerManager remain.

Note: You can use git log --follow src/file.cpp to trace the history of
a file from before it was renamed.
2021-03-17 20:16:43 +01:00

19 lines
308 B
C++

#pragma once
#include "CNProtocol.hpp"
#include "CNStructs.hpp"
#include "CNShardServer.hpp"
#include "Items.hpp"
#include "PlayerManager.hpp"
struct VendorListing {
int sort, type, iID;
};
namespace Vendor {
extern std::map<int32_t, std::vector<VendorListing>> VendorTables;
void init();
}