mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2025-03-04 09:22:36 +01:00
17 lines
399 B
Java
17 lines
399 B
Java
package com.eu.habbo.habbohotel.modtool;
|
|
|
|
import com.eu.habbo.habbohotel.users.Habbo;
|
|
import com.eu.habbo.plugin.events.support.SupportEvent;
|
|
|
|
public class ScripterEvent extends SupportEvent {
|
|
public final Habbo habbo;
|
|
public final String reason;
|
|
|
|
public ScripterEvent(Habbo habbo, String reason) {
|
|
super(null);
|
|
|
|
this.habbo = habbo;
|
|
this.reason = reason;
|
|
}
|
|
}
|