mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2025-03-06 10:12:36 +01:00
8 lines
143 B
Java
8 lines
143 B
Java
package com.eu.habbo.habbohotel.items;
|
|
|
|
import com.eu.habbo.habbohotel.rooms.Room;
|
|
|
|
public interface ICycleable {
|
|
void cycle(Room room);
|
|
}
|