Realizedd / Duels

A duel plugin for minecraft.
https://www.spigotmc.org/resources/duels.20171/
GNU General Public License v3.0
108 stars 100 forks source link

Change the interface name (in api) #6

Closed tomocrafter closed 6 years ago

tomocrafter commented 6 years ago

You should change the duels-api's interfaces name. because when implement the that interface, class name will be like public class Arena extends BaseButton implements me.realized.duels.api.arena.Arena { so, this is the so long, if you change the interface for example, when Arena to IArena, you can write like this public class Arena extends BaseButton implements IArena {

I'm so sorry for my bad English because I'm Japanese and I didn't use any translators.

Realizedd commented 6 years ago

I prefer following the naming convention the interfaces in JDK are following. (Example being List)

Also, since API module can be compiled on its own as of v3.0.0, there shouldn't be a problem with duplicate names.