mirror of
https://github.com/OpenFusionProject/OpenFusion.git
synced 2024-11-05 06:50:04 +00:00
dongresource
e9bc2fe561
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.
19 lines
308 B
C++
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();
|
|
}
|