mirror of
https://github.com/OpenFusionProject/OpenFusion.git
synced 2024-11-05 06:50:04 +00:00
11 lines
185 B
C++
11 lines
185 B
C++
|
#pragma once
|
||
|
|
||
|
#include "ItemManager.hpp"
|
||
|
|
||
|
struct VendorListing {
|
||
|
int sort, type, iID;
|
||
|
};
|
||
|
|
||
|
namespace Vendor {
|
||
|
extern std::map<int32_t, std::vector<VendorListing>> VendorTables;
|
||
|
}
|