14 lines
476 B
Java
Raw Normal View History

2018-07-06 13:30:00 +00: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 21:14:53 +03:00
public interface IEventTriggers {
2019-03-18 01:22:00 +00:00
void onClick(GameClient client, Room room, Object[] objects) throws Exception;
2018-07-06 13:30:00 +00:00
2019-03-18 01:22:00 +00:00
void onWalkOn(RoomUnit roomUnit, Room room, Object[] objects) throws Exception;
2018-07-06 13:30:00 +00:00
2019-03-18 01:22:00 +00:00
void onWalkOff(RoomUnit roomUnit, Room room, Object[] objects) throws Exception;
2018-07-06 13:30:00 +00:00
}