This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class AcceptCommand implements CommandExecutor | |
| { | |
| private ChallengeMain plugin; | |
| public AcceptCommand(ChallengeMain plugin) | |
| { | |
| this.plugin = plugin; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package net.atomiccloud.acndatabase.bungee; | |
| import net.atomiccloud.acndatabase.GameMode; | |
| import net.atomiccloud.acndatabase.bungee.data.Statistics; | |
| import net.md_5.bungee.api.connection.ProxiedPlayer; | |
| public interface Database { | |
| Statistics getStatistics(GameMode game, ProxiedPlayer player); | |
| } |
NewerOlder