package com.hypixel.hytale.component.system; import com.hypixel.hytale.component.Archetype; import com.hypixel.hytale.component.ComponentRegistry; import com.hypixel.hytale.component.query.Query; import javax.annotation.Nullable; public interface QuerySystem extends ISystem { default boolean test(ComponentRegistry componentRegistry, Archetype archetype) { return this.getQuery().test(archetype); } @Nullable Query getQuery(); }