Skip to content

Commit

Permalink
개발자 MinusKube님의 SmartInvAPI.
Browse files Browse the repository at this point in the history
  • Loading branch information
BuildTools committed Nov 19, 2021
1 parent 7247c94 commit f03c176
Show file tree
Hide file tree
Showing 12 changed files with 36 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@

import java.util.function.Consumer;

/**
* 개발자 MinusKube님의 SmartInvAPI 입니다.
*/
public class ClickableItem {

private ItemStack item;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

import java.util.function.Consumer;

/**
* 개발자 MinusKube님의 SmartInvAPI 입니다.
*/
public class InventoryListener<T> {

private Class<T> type;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@
import java.util.*;
import java.util.logging.Level;

/**
* 개발자 MinusKube님의 SmartInvAPI 입니다.
*/
public class InventoryManager {


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
import java.util.List;
import java.util.Optional;

/**
* 개발자 MinusKube님의 SmartInvAPI 입니다.
*/
@SuppressWarnings("unchecked")
public class SmartInventory {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@
import java.util.Optional;
import java.util.UUID;

/**
* 개발자 MinusKube님의 SmartInvAPI 입니다.
*/
public interface InventoryContents {

SmartInventory inventory();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

import org.bukkit.entity.Player;

/**
* 개발자 MinusKube님의 SmartInvAPI 입니다.
*/
public interface InventoryProvider {

void init(Player player, InventoryContents contents);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

import java.util.Arrays;

/**
* 개발자 MinusKube님의 SmartInvAPI 입니다.
*/
public interface Pagination {

ClickableItem[] getPageItems();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
import java.util.Optional;
import java.util.Set;

/**
* 개발자 MinusKube님의 SmartInvAPI 입니다.
*/
public interface SlotIterator {

enum Type {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
package me.else_junsuk.junseclibrary.inventoryapi.content;

/**
* 개발자 MinusKube님의 SmartInvAPI 입니다.
*/
public class SlotPos {

private final int row;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
import org.bukkit.event.inventory.InventoryType;
import org.bukkit.inventory.Inventory;

/**
* 개발자 MinusKube님의 SmartInvAPI 입니다.
*/
public class ChestInventoryOpener implements InventoryOpener {

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
import org.bukkit.event.inventory.InventoryType;
import org.bukkit.inventory.Inventory;

/**
* 개발자 MinusKube님의 SmartInvAPI 입니다.
*/
public interface InventoryOpener {

Inventory open(SmartInventory inv, Player player);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@

import java.util.List;

/**
* 개발자 MinusKube님의 SmartInvAPI 입니다.
*/
public class SpecialInventoryOpener implements InventoryOpener {

private static final List<InventoryType> SUPPORTED = ImmutableList.of(
Expand Down

0 comments on commit f03c176

Please sign in to comment.