8 lines
143 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.rooms.Room;
2019-05-26 21:14:53 +03:00
public interface ICycleable {
2019-03-18 01:22:00 +00:00
void cycle(Room room);
2018-07-06 13:30:00 +00:00
}