package com.hypixel.hytale.component.system; import com.hypixel.hytale.component.Store; import javax.annotation.Nonnull; public abstract class StoreSystem extends System { public abstract void onSystemAddedToStore(@Nonnull Store var1); public abstract void onSystemRemovedFromStore(@Nonnull Store var1); }