summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/event/player/PlayerRegisterChannelEvent.java
blob: 442ac7fbbf1f7e533dc814ed84dc7a89c2f6d36e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package org.bukkit.event.player;

import org.bukkit.entity.Player;

/**
 * This is called immediately after a player registers for a plugin channel.
 */
public class PlayerRegisterChannelEvent extends PlayerChannelEvent {

    public PlayerRegisterChannelEvent(final Player player, final String channel) {
        super(player, channel);
    }
}