2018-07-06 15:30:00 +02:00
|
|
|
package com.eu.habbo.habbohotel.items;
|
|
|
|
|
|
|
|
import com.eu.habbo.habbohotel.gameclients.GameClient;
|
|
|
|
import com.eu.habbo.habbohotel.rooms.Room;
|
|
|
|
import com.eu.habbo.habbohotel.rooms.RoomUnit;
|
|
|
|
|
2019-05-26 20:14:53 +02:00
|
|
|
public interface IEventTriggers {
|
2019-03-18 02:22:00 +01:00
|
|
|
void onClick(GameClient client, Room room, Object[] objects) throws Exception;
|
2018-07-06 15:30:00 +02:00
|
|
|
|
2019-03-18 02:22:00 +01:00
|
|
|
void onWalkOn(RoomUnit roomUnit, Room room, Object[] objects) throws Exception;
|
2018-07-06 15:30:00 +02:00
|
|
|
|
2019-03-18 02:22:00 +01:00
|
|
|
void onWalkOff(RoomUnit roomUnit, Room room, Object[] objects) throws Exception;
|
2018-07-06 15:30:00 +02:00
|
|
|
}
|