EntityTrackerAddAndRemove class

Пакет: com.hypixel.hytale.server.core.modules.entity.system

Файл: com/hypixel/hytale/server/core/modules/entity/system/IntangibleSystems.java

extends: MarkerReplicationSystems.EntityTrackerAddAndRemove<Intangible>

Исходный код

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

class="kw">import com.hypixel.hytale.component.ComponentType;
class="kw">import com.hypixel.hytale.protocol.ComponentUpdateType;
class="kw">import com.hypixel.hytale.protocol.IntangibleUpdate;
class="kw">import com.hypixel.hytale.server.core.modules.entity.component.Intangible;
class="kw">import com.hypixel.hytale.server.core.modules.entity.tracker.EntityTrackerSystems;
class="kw">import com.hypixel.hytale.server.core.universe.world.storage.EntityStore;

class="kw">public class IntangibleSystems {
   class="kw">public IntangibleSystems() {
   }

   class="kw">public class="kw">static class EntityTrackerAddAndRemove class="kw">extends MarkerReplicationSystems.EntityTrackerAddAndRemove<Intangible> {
      class="kw">public EntityTrackerAddAndRemove(ComponentType<EntityStore, EntityTrackerSystems.Visible> var1) {
         super(var1, Intangible.getComponentType(), ComponentUpdateType.Intangible);
      }
   }

   class="kw">public class="kw">static class EntityTrackerUpdate class="kw">extends MarkerReplicationSystems.EntityTrackerUpdate {
      class="kw">public EntityTrackerUpdate(ComponentType<EntityStore, EntityTrackerSystems.Visible> var1) {
         super(var1, Intangible.getComponentType(), IntangibleUpdate::new);
      }
   }
}