Class FireworkStore

java.lang.Object
net.glowstone.io.entity.EntityStore<GlowFirework>
net.glowstone.io.entity.FireworkStore

public class FireworkStore extends EntityStore<GlowFirework>
  • Constructor Details

    • FireworkStore

      public FireworkStore()
  • Method Details

    • createEntity

      public GlowFirework createEntity(org.bukkit.Location location, CompoundTag compound)
      Description copied from class: EntityStore
      Create a new entity of this store's type at the given location. The load method will be called separately.
      Specified by:
      createEntity in class EntityStore<GlowFirework>
      Parameters:
      location - The location.
      compound - The entity's tag, if extra data is needed.
      Returns:
      The new entity.
    • load

      public void load(GlowFirework entity, CompoundTag tag)
      Description copied from class: EntityStore
      Load data into an existing entity of the appropriate type from the given compound tag.
      Overrides:
      load in class EntityStore<GlowFirework>
      Parameters:
      entity - The target entity.
      tag - The entity's tag.
    • save

      public void save(GlowFirework entity, CompoundTag tag)
      Description copied from class: EntityStore
      Save information about this entity to the given tag.
      Overrides:
      save in class EntityStore<GlowFirework>
      Parameters:
      entity - The entity to save.
      tag - The target tag.