Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.gmail.filoghost.touchscreen;
- import com.gmail.filoghost.holographicdisplays.api.handler.TouchHandler;
- import org.bukkit.entity.Player;
- public class DefaultTouchHandler
- implements TouchHandler
- {
- private TouchHologram touchHologram;
- public DefaultTouchHandler(TouchHologram touchHologram)
- {
- this.touchHologram = touchHologram;
- }
- public void onTouch(Player player)
- {
- this.touchHologram.onTouch(player);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment