EntityTrackerUpdate class

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

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

extends: MarkerReplicationSystems.EntityTrackerUpdate

Исходный код

Показать/скрыть
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.PreventInventoryAccessUpdate;
class="kw">import com.hypixel.hytale.server.core.modules.entity.component.PreventInventoryAccess;
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 PreventInventoryAccessSystems {
   class="kw">public PreventInventoryAccessSystems() {
   }

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

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