mirror of
https://github.com/OpenFusionProject/OpenFusion.git
synced 2026-01-12 19:40:04 +00:00
[refactor] Split ItemManager.cpp into Vendor.cpp & Trading.cpp
- added sources to Makefile - Added Trading::init() to main.cpp
This commit is contained in:
11
src/Vendor.hpp
Normal file
11
src/Vendor.hpp
Normal file
@@ -0,0 +1,11 @@
|
||||
#pragma once
|
||||
|
||||
#include "ItemManager.hpp"
|
||||
|
||||
struct VendorListing {
|
||||
int sort, type, iID;
|
||||
};
|
||||
|
||||
namespace Vendor {
|
||||
extern std::map<int32_t, std::vector<VendorListing>> VendorTables;
|
||||
}
|
||||
Reference in New Issue
Block a user