Class OnDoTileBuilding2Event

java.lang.Object
com.avrix.events.Event
com.avrix.events.OnDoTileBuilding2Event

public abstract class OnDoTileBuilding2Event extends Event
Triggered when a building tile is being set.
  • Constructor Details

    • OnDoTileBuilding2Event

      public OnDoTileBuilding2Event()
  • Method Details

    • getEventName

      public String getEventName()
      Getting the event name
      Specified by:
      getEventName in class Event
      Returns:
      name of the event being implemented
    • handleEvent

      public abstract void handleEvent(zombie.iso.IsoChunk chunk, Boolean render, Integer x, Integer y, Integer z, zombie.iso.IsoGridSquare square)
      Called Event Handling Method
      Parameters:
      chunk - The chunk in which the tile is being set.
      render - Whether the tile should be rendered or not.
      x - The x coordinate of the tile being set.
      y - The y coordinate of the tile being set.
      z - The z coordinate of the tile being set.
      square - The grid square where the tile is being set.