hytale-server/com/hypixel/hytale/server/npc/util/IAnnotatedComponentCollecti...

11 lines
245 B
Java

package com.hypixel.hytale.server.npc.util;
import javax.annotation.Nullable;
public interface IAnnotatedComponentCollection extends IAnnotatedComponent {
int componentCount();
@Nullable
IAnnotatedComponent getComponent(int var1);
}