Commits
blablubbabc authored and md_5 committed cadf9951306
1 1 | package org.bukkit.block; |
2 2 | |
3 3 | import org.bukkit.DyeColor; |
4 4 | import org.bukkit.block.banner.Pattern; |
5 5 | |
6 6 | import java.util.List; |
7 7 | |
8 + | /** |
9 + | * Represents a captured state of a banner. |
10 + | */ |
8 11 | public interface Banner extends BlockState { |
9 12 | |
10 13 | /** |
11 14 | * Returns the base color for this banner |
12 15 | * |
13 16 | * @return the base color |
14 17 | */ |
15 18 | DyeColor getBaseColor(); |
16 19 | |
17 20 | /** |