├── LICENSE ├── README.md ├── examples └── TradeTest.php ├── plugin.yml ├── resources └── LICENSE └── src └── nlog └── trade ├── TradeAPI.php ├── inventory ├── FakeInventory.php ├── PlayerTradeInventory.php └── action │ ├── NetworkFakeInventoryAction.php │ └── NetworkTradeInventoryAction.php ├── listener ├── InventoryListener.php └── TransactionInjector.php └── merchant ├── MerchantRecipe.php ├── MerchantRecipeList.php └── TraderProperties.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organization/TradeAPI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organization/TradeAPI/HEAD/README.md -------------------------------------------------------------------------------- /examples/TradeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organization/TradeAPI/HEAD/examples/TradeTest.php -------------------------------------------------------------------------------- /plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organization/TradeAPI/HEAD/plugin.yml -------------------------------------------------------------------------------- /resources/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organization/TradeAPI/HEAD/resources/LICENSE -------------------------------------------------------------------------------- /src/nlog/trade/TradeAPI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organization/TradeAPI/HEAD/src/nlog/trade/TradeAPI.php -------------------------------------------------------------------------------- /src/nlog/trade/inventory/FakeInventory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organization/TradeAPI/HEAD/src/nlog/trade/inventory/FakeInventory.php -------------------------------------------------------------------------------- /src/nlog/trade/inventory/PlayerTradeInventory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organization/TradeAPI/HEAD/src/nlog/trade/inventory/PlayerTradeInventory.php -------------------------------------------------------------------------------- /src/nlog/trade/inventory/action/NetworkFakeInventoryAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organization/TradeAPI/HEAD/src/nlog/trade/inventory/action/NetworkFakeInventoryAction.php -------------------------------------------------------------------------------- /src/nlog/trade/inventory/action/NetworkTradeInventoryAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organization/TradeAPI/HEAD/src/nlog/trade/inventory/action/NetworkTradeInventoryAction.php -------------------------------------------------------------------------------- /src/nlog/trade/listener/InventoryListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organization/TradeAPI/HEAD/src/nlog/trade/listener/InventoryListener.php -------------------------------------------------------------------------------- /src/nlog/trade/listener/TransactionInjector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organization/TradeAPI/HEAD/src/nlog/trade/listener/TransactionInjector.php -------------------------------------------------------------------------------- /src/nlog/trade/merchant/MerchantRecipe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organization/TradeAPI/HEAD/src/nlog/trade/merchant/MerchantRecipe.php -------------------------------------------------------------------------------- /src/nlog/trade/merchant/MerchantRecipeList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organization/TradeAPI/HEAD/src/nlog/trade/merchant/MerchantRecipeList.php -------------------------------------------------------------------------------- /src/nlog/trade/merchant/TraderProperties.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/organization/TradeAPI/HEAD/src/nlog/trade/merchant/TraderProperties.php --------------------------------------------------------------------------------