Skip to content

Commit

Permalink
Some missing things.
Browse files Browse the repository at this point in the history
  • Loading branch information
Cybermaxke committed May 31, 2017
1 parent 45474d0 commit 6c48a4f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/main/java/org/spongepowered/api/CatalogTypes.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@
*/
package org.spongepowered.api;

import org.spongepowered.api.advancement.Advancement;
import org.spongepowered.api.advancement.AdvancementTree;
import org.spongepowered.api.advancement.AdvancementType;
import org.spongepowered.api.advancement.criteria.trigger.TriggerType;
import org.spongepowered.api.block.BlockType;
import org.spongepowered.api.block.tileentity.TileEntityType;
import org.spongepowered.api.boss.BossBarColor;
Expand Down Expand Up @@ -93,6 +97,12 @@ public final class CatalogTypes {

// SORTFIELDS:ON

public static final Class<Advancement> ADVANCEMENT = Advancement.class;

public static final Class<AdvancementTree> ADVANCEMENT_TREE = AdvancementTree.class;

public static final Class<AdvancementType> ADVANCEMENT_TYPE = AdvancementType.class;

public static final Class<AITaskType> AI_TASK_TYPE = AITaskType.class;

public static final Class<ArmorType> ARMOR_TYPE = ArmorType.class;
Expand Down Expand Up @@ -291,6 +301,8 @@ public final class CatalogTypes {

public static final Class<TreeType> TREE_TYPE = TreeType.class;

public static final Class<TriggerType> TRIGGER_TYPE = TriggerType.class;

public static final Class<Visibility> VISIBILITY = Visibility.class;

public static final Class<WallType> WALL_TYPE = WallType.class;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,13 @@

import org.spongepowered.api.CatalogType;
import org.spongepowered.api.text.Text;
import org.spongepowered.api.util.annotation.CatalogedBy;

/**
* Changes the frame around the {@link Advancement} icon and
* also the appearance in the notifications.
*/
@CatalogedBy(AdvancementTypes.class)
public interface AdvancementType extends CatalogType {

/**
Expand Down

0 comments on commit 6c48a4f

Please sign in to comment.