001package com.ericlam.mc.eldgui.controller;
002
003import java.lang.annotation.ElementType;
004import java.lang.annotation.Retention;
005import java.lang.annotation.RetentionPolicy;
006import java.lang.annotation.Target;
007
008/**
009 * 獲取指定 pattern 内的所有物品,使用 {@code List<ItemStack>} 返回
010 */
011@Target(ElementType.PARAMETER)
012@Retention(RetentionPolicy.RUNTIME)
013public @interface FromPattern {
014
015    /**
016     *
017     * @return 指定 pattern
018     */
019    char value();
020
021}