mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2024-11-23 23:30:50 +01:00
14 lines
476 B
Java
14 lines
476 B
Java
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;
|
|
|
|
public interface IEventTriggers {
|
|
void onClick(GameClient client, Room room, Object[] objects) throws Exception;
|
|
|
|
void onWalkOn(RoomUnit roomUnit, Room room, Object[] objects) throws Exception;
|
|
|
|
void onWalkOff(RoomUnit roomUnit, Room room, Object[] objects) throws Exception;
|
|
}
|