Move Shop stuff to own package

This commit is contained in:
P0nk
2023-03-30 06:47:07 +02:00
parent 39d759595d
commit 5f0e9a355b
10 changed files with 27 additions and 15 deletions

View File

@@ -73,6 +73,7 @@ import server.partyquest.MonsterCarnival;
import server.partyquest.MonsterCarnivalParty;
import server.partyquest.PartyQuest;
import server.quest.Quest;
import server.shop.Shop;
import tools.*;
import tools.exceptions.NotEnabledException;
import tools.packets.WeddingPackets;

View File

@@ -1,7 +1,10 @@
package client.command;
import database.drop.DropProvider;
import server.ShopFactory;
import server.shop.ShopFactory;
/**
* @author Ponk
*/
public record CommandContext(DropProvider dropProvider, ShopFactory shopFactory) {
}