ImpactConsumer interface

Пакет: com.hypixel.hytale.server.core.modules.projectile.config

Файл: com/hypixel/hytale/server/core/modules/projectile/config/ImpactConsumer.java

Методы (1)

МодификаторыВозвратСигнатура
abstract void onImpactvoid onImpact(@Nonnull Ref<EntityStore> var1, @Nonnull Vector3d var2, @Nullable Vector3i var3, @Nullable Ref<EntityStore> var4, @Nullable String var5, @Nonnull CommandBuffer<EntityStore> var6)

Исходный код

Показать/скрыть
class="kw">package com.hypixel.hytale.server.core.modules.projectile.config;

class="kw">import com.hypixel.hytale.component.CommandBuffer;
class="kw">import com.hypixel.hytale.component.Ref;
class="kw">import com.hypixel.hytale.server.core.universe.world.storage.EntityStore;
class="kw">import javax.annotation.Nonnull;
class="kw">import javax.annotation.Nullable;
class="kw">import org.joml.Vector3d;
class="kw">import org.joml.Vector3i;

@FunctionalInterface
class="kw">public class="kw">interface ImpactConsumer {
   void onImpact(
      @Nonnull Ref<EntityStore> var1,
      @Nonnull Vector3d var2,
      @Nullable Vector3i var3,
      @Nullable Ref<EntityStore> var4,
      @Nullable String var5,
      @Nonnull CommandBuffer<EntityStore> var6
   );
}