Class DisguiseAPI

java.lang.Object
net.pinger.disguise.DisguiseAPI

public class DisguiseAPI extends Object
  • Field Details

    • GSON

      public static final com.google.gson.Gson GSON
  • Method Details

    • setDisguise

      public static void setDisguise(Disguise disguise)
      This method sets the instance of the disguise field.
      Parameters:
      disguise - the disguise instance
    • applyProvider

      public static PacketProvider applyProvider()
      This method is used to assign a value to the PacketProvider field which manages sent packets for disguised
    • getSkinManager

      public static SkinManager getSkinManager()
      This method returns the skin manager responsible for fetching skins.
      Returns:
      the skin manager
    • registerProvider

      public static void registerProvider(Class<? extends PacketProvider> providerClass, boolean replace)
      This method registers the given provider, which will be instantiated once the applyProvider() is called if the versions match.

      If the replace boolean is true, this version will replace any other class that matches the provided version of this one. By default, the value is true.

      Parameters:
      providerClass - the class of the provider
      replace - whether we should replace any other classes with this noe
    • registerProvider

      public static void registerProvider(Class<? extends PacketProvider> providerClass)
      This method registers the given provider.
      Parameters:
      providerClass - the given provider
    • getProvider

      public static PacketProvider getProvider()
      This method returns the current provider.
      Returns:
      the provider
    • getLogger

      public static org.slf4j.Logger getLogger()
      This method returns the standard logger of the api.
      Returns:
      the logger